From 0a417a14d6d038ace2115d90d129a9edf4bb7cf7 Mon Sep 17 00:00:00 2001 From: go-jet Date: Wed, 17 Jul 2019 11:03:16 +0200 Subject: [PATCH 1/2] Add northwind db. --- generator/postgres/generator.go | 6 +- tests/init/data/northwind.sql | 3912 + tests/init/init.go | 3 + tests/northwind_test.go | 68 + tests/testdata/northwind-all.json | 135339 +++++++++++++++++++++++++++ 5 files changed, 139327 insertions(+), 1 deletion(-) create mode 100644 tests/init/data/northwind.sql create mode 100644 tests/northwind_test.go create mode 100644 tests/testdata/northwind-all.json diff --git a/generator/postgres/generator.go b/generator/postgres/generator.go index 47da432..e38eaad 100644 --- a/generator/postgres/generator.go +++ b/generator/postgres/generator.go @@ -49,7 +49,11 @@ func Generate(destDir string, genData DBConnection) error { return err } - fmt.Println(" FOUND", len(schemaInfo.TableInfos), " table(s), ", len(schemaInfo.EnumInfos), " enum(s)") + fmt.Println(" FOUND", len(schemaInfo.TableInfos), "table(s), ", len(schemaInfo.EnumInfos), "enum(s)") + + if len(schemaInfo.TableInfos) == 0 && len(schemaInfo.EnumInfos) == 0 { + return nil + } schemaGenPath := path.Join(destDir, genData.DBName, genData.SchemaName) fmt.Println("Destination directory:", schemaGenPath) diff --git a/tests/init/data/northwind.sql b/tests/init/data/northwind.sql new file mode 100644 index 0000000..7b2711e --- /dev/null +++ b/tests/init/data/northwind.sql @@ -0,0 +1,3912 @@ +-- +-- PostgreSQL database dump +-- +SET search_path = northwind; + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; + + + +SET default_tablespace = ''; + +SET default_with_oids = false; + + +--- +--- drop tables +--- + + +DROP TABLE IF EXISTS customer_customer_demo; +DROP TABLE IF EXISTS customer_demographics; +DROP TABLE IF EXISTS employee_territories; +DROP TABLE IF EXISTS order_details; +DROP TABLE IF EXISTS orders; +DROP TABLE IF EXISTS customers; +DROP TABLE IF EXISTS products; +DROP TABLE IF EXISTS shippers; +DROP TABLE IF EXISTS suppliers; +DROP TABLE IF EXISTS territories; +DROP TABLE IF EXISTS us_states; +DROP TABLE IF EXISTS categories; +DROP TABLE IF EXISTS region; +DROP TABLE IF EXISTS employees; + +-- +-- Name: categories; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE categories ( + category_id smallint NOT NULL, + category_name character varying(15) NOT NULL, + description text, + picture bytea +); + + +-- +-- Name: customer_customer_demo; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE customer_customer_demo ( + customer_id bpchar NOT NULL, + customer_type_id bpchar NOT NULL +); + + +-- +-- Name: customer_demographics; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE customer_demographics ( + customer_type_id bpchar NOT NULL, + customer_desc text +); + + +-- +-- Name: customers; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE customers ( + customer_id bpchar NOT NULL, + company_name character varying(40) NOT NULL, + contact_name character varying(30), + contact_title character varying(30), + address character varying(60), + city character varying(15), + region character varying(15), + postal_code character varying(10), + country character varying(15), + phone character varying(24), + fax character varying(24) +); + + +-- +-- Name: employees; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE employees ( + employee_id smallint NOT NULL, + last_name character varying(20) NOT NULL, + first_name character varying(10) NOT NULL, + title character varying(30), + title_of_courtesy character varying(25), + birth_date date, + hire_date date, + address character varying(60), + city character varying(15), + region character varying(15), + postal_code character varying(10), + country character varying(15), + home_phone character varying(24), + extension character varying(4), + photo bytea, + notes text, + reports_to smallint, + photo_path character varying(255) +); + + +-- +-- Name: employee_territories; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE employee_territories ( + employee_id smallint NOT NULL, + territory_id character varying(20) NOT NULL +); + + + + +-- +-- Name: order_details; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE order_details ( + order_id smallint NOT NULL, + product_id smallint NOT NULL, + unit_price real NOT NULL, + quantity smallint NOT NULL, + discount real NOT NULL +); + + +-- +-- Name: orders; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE orders ( + order_id smallint NOT NULL, + customer_id bpchar, + employee_id smallint, + order_date date, + required_date date, + shipped_date date, + ship_via smallint, + freight real, + ship_name character varying(40), + ship_address character varying(60), + ship_city character varying(15), + ship_region character varying(15), + ship_postal_code character varying(10), + ship_country character varying(15) +); + + +-- +-- Name: products; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE products ( + product_id smallint NOT NULL, + product_name character varying(40) NOT NULL, + supplier_id smallint, + category_id smallint, + quantity_per_unit character varying(20), + unit_price real, + units_in_stock smallint, + units_on_order smallint, + reorder_level smallint, + discontinued integer NOT NULL +); + + +-- +-- Name: region; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE region ( + region_id smallint NOT NULL, + region_description bpchar NOT NULL +); + + +-- +-- Name: shippers; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE shippers ( + shipper_id smallint NOT NULL, + company_name character varying(40) NOT NULL, + phone character varying(24) +); + + + +-- +-- Name: suppliers; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE suppliers ( + supplier_id smallint NOT NULL, + company_name character varying(40) NOT NULL, + contact_name character varying(30), + contact_title character varying(30), + address character varying(60), + city character varying(15), + region character varying(15), + postal_code character varying(10), + country character varying(15), + phone character varying(24), + fax character varying(24), + homepage text +); + + +-- +-- Name: territories; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE territories ( + territory_id character varying(20) NOT NULL, + territory_description bpchar NOT NULL, + region_id smallint NOT NULL +); + + +-- +-- Name: us_states; Type: TABLE; Schema: public; Owner: -; Tablespace: +-- + +CREATE TABLE us_states ( + state_id smallint NOT NULL, + state_name character varying(100), + state_abbr character varying(2), + state_region character varying(50) +); + + +-- +-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO categories VALUES (1, 'Beverages', 'Soft drinks, coffees, teas, beers, and ales', '\x'); +INSERT INTO categories VALUES (2, 'Condiments', 'Sweet and savory sauces, relishes, spreads, and seasonings', '\x'); +INSERT INTO categories VALUES (3, 'Confections', 'Desserts, candies, and sweet breads', '\x'); +INSERT INTO categories VALUES (4, 'Dairy Products', 'Cheeses', '\x'); +INSERT INTO categories VALUES (5, 'Grains/Cereals', 'Breads, crackers, pasta, and cereal', '\x'); +INSERT INTO categories VALUES (6, 'Meat/Poultry', 'Prepared meats', '\x'); +INSERT INTO categories VALUES (7, 'Produce', 'Dried fruit and bean curd', '\x'); +INSERT INTO categories VALUES (8, 'Seafood', 'Seaweed and fish', '\x'); + + +-- +-- Data for Name: customer_customer_demo; Type: TABLE DATA; Schema: public; Owner: - +-- + + + +-- +-- Data for Name: customer_demographics; Type: TABLE DATA; Schema: public; Owner: - +-- + + + +-- +-- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO customers VALUES ('ALFKI', 'Alfreds Futterkiste', 'Maria Anders', 'Sales Representative', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany', '030-0074321', '030-0076545'); +INSERT INTO customers VALUES ('ANATR', 'Ana Trujillo Emparedados y helados', 'Ana Trujillo', 'Owner', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico', '(5) 555-4729', '(5) 555-3745'); +INSERT INTO customers VALUES ('ANTON', 'Antonio Moreno Taquería', 'Antonio Moreno', 'Owner', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico', '(5) 555-3932', NULL); +INSERT INTO customers VALUES ('AROUT', 'Around the Horn', 'Thomas Hardy', 'Sales Representative', '120 Hanover Sq.', 'London', NULL, 'WA1 1DP', 'UK', '(171) 555-7788', '(171) 555-6750'); +INSERT INTO customers VALUES ('BERGS', 'Berglunds snabbköp', 'Christina Berglund', 'Order Administrator', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden', '0921-12 34 65', '0921-12 34 67'); +INSERT INTO customers VALUES ('BLAUS', 'Blauer See Delikatessen', 'Hanna Moos', 'Sales Representative', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany', '0621-08460', '0621-08924'); +INSERT INTO customers VALUES ('BLONP', 'Blondesddsl père et fils', 'Frédérique Citeaux', 'Marketing Manager', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France', '88.60.15.31', '88.60.15.32'); +INSERT INTO customers VALUES ('BOLID', 'Bólido Comidas preparadas', 'Martín Sommer', 'Owner', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain', '(91) 555 22 82', '(91) 555 91 99'); +INSERT INTO customers VALUES ('BONAP', 'Bon app''', 'Laurence Lebihan', 'Owner', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France', '91.24.45.40', '91.24.45.41'); +INSERT INTO customers VALUES ('BOTTM', 'Bottom-Dollar Markets', 'Elizabeth Lincoln', 'Accounting Manager', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada', '(604) 555-4729', '(604) 555-3745'); +INSERT INTO customers VALUES ('BSBEV', 'B''s Beverages', 'Victoria Ashworth', 'Sales Representative', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK', '(171) 555-1212', NULL); +INSERT INTO customers VALUES ('CACTU', 'Cactus Comidas para llevar', 'Patricio Simpson', 'Sales Agent', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 135-5555', '(1) 135-4892'); +INSERT INTO customers VALUES ('CENTC', 'Centro comercial Moctezuma', 'Francisco Chang', 'Marketing Manager', 'Sierras de Granada 9993', 'México D.F.', NULL, '05022', 'Mexico', '(5) 555-3392', '(5) 555-7293'); +INSERT INTO customers VALUES ('CHOPS', 'Chop-suey Chinese', 'Yang Wang', 'Owner', 'Hauptstr. 29', 'Bern', NULL, '3012', 'Switzerland', '0452-076545', NULL); +INSERT INTO customers VALUES ('COMMI', 'Comércio Mineiro', 'Pedro Afonso', 'Sales Associate', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil', '(11) 555-7647', NULL); +INSERT INTO customers VALUES ('CONSH', 'Consolidated Holdings', 'Elizabeth Brown', 'Sales Representative', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK', '(171) 555-2282', '(171) 555-9199'); +INSERT INTO customers VALUES ('DRACD', 'Drachenblut Delikatessen', 'Sven Ottlieb', 'Order Administrator', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany', '0241-039123', '0241-059428'); +INSERT INTO customers VALUES ('DUMON', 'Du monde entier', 'Janine Labrune', 'Owner', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France', '40.67.88.88', '40.67.89.89'); +INSERT INTO customers VALUES ('EASTC', 'Eastern Connection', 'Ann Devon', 'Sales Agent', '35 King George', 'London', NULL, 'WX3 6FW', 'UK', '(171) 555-0297', '(171) 555-3373'); +INSERT INTO customers VALUES ('ERNSH', 'Ernst Handel', 'Roland Mendel', 'Sales Manager', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria', '7675-3425', '7675-3426'); +INSERT INTO customers VALUES ('FAMIA', 'Familia Arquibaldo', 'Aria Cruz', 'Marketing Assistant', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil', '(11) 555-9857', NULL); +INSERT INTO customers VALUES ('FISSA', 'FISSA Fabrica Inter. Salchichas S.A.', 'Diego Roel', 'Accounting Manager', 'C/ Moralzarzal, 86', 'Madrid', NULL, '28034', 'Spain', '(91) 555 94 44', '(91) 555 55 93'); +INSERT INTO customers VALUES ('FOLIG', 'Folies gourmandes', 'Martine Rancé', 'Assistant Sales Agent', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France', '20.16.10.16', '20.16.10.17'); +INSERT INTO customers VALUES ('FOLKO', 'Folk och fä HB', 'Maria Larsson', 'Owner', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden', '0695-34 67 21', NULL); +INSERT INTO customers VALUES ('FRANK', 'Frankenversand', 'Peter Franken', 'Marketing Manager', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany', '089-0877310', '089-0877451'); +INSERT INTO customers VALUES ('FRANR', 'France restauration', 'Carine Schmitt', 'Marketing Manager', '54, rue Royale', 'Nantes', NULL, '44000', 'France', '40.32.21.21', '40.32.21.20'); +INSERT INTO customers VALUES ('FRANS', 'Franchi S.p.A.', 'Paolo Accorti', 'Sales Representative', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy', '011-4988260', '011-4988261'); +INSERT INTO customers VALUES ('FURIB', 'Furia Bacalhau e Frutos do Mar', 'Lino Rodriguez', 'Sales Manager', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal', '(1) 354-2534', '(1) 354-2535'); +INSERT INTO customers VALUES ('GALED', 'Galería del gastrónomo', 'Eduardo Saavedra', 'Marketing Manager', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '08022', 'Spain', '(93) 203 4560', '(93) 203 4561'); +INSERT INTO customers VALUES ('GODOS', 'Godos Cocina Típica', 'José Pedro Freyre', 'Sales Manager', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain', '(95) 555 82 82', NULL); +INSERT INTO customers VALUES ('GOURL', 'Gourmet Lanchonetes', 'André Fonseca', 'Sales Associate', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil', '(11) 555-9482', NULL); +INSERT INTO customers VALUES ('GREAL', 'Great Lakes Food Market', 'Howard Snyder', 'Marketing Manager', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA', '(503) 555-7555', NULL); +INSERT INTO customers VALUES ('GROSR', 'GROSELLA-Restaurante', 'Manuel Pereira', 'Owner', '5ª Ave. Los Palos Grandes', 'Caracas', 'DF', '1081', 'Venezuela', '(2) 283-2951', '(2) 283-3397'); +INSERT INTO customers VALUES ('HANAR', 'Hanari Carnes', 'Mario Pontes', 'Accounting Manager', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil', '(21) 555-0091', '(21) 555-8765'); +INSERT INTO customers VALUES ('HILAA', 'HILARION-Abastos', 'Carlos Hernández', 'Sales Representative', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela', '(5) 555-1340', '(5) 555-1948'); +INSERT INTO customers VALUES ('HUNGC', 'Hungry Coyote Import Store', 'Yoshi Latimer', 'Sales Representative', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA', '(503) 555-6874', '(503) 555-2376'); +INSERT INTO customers VALUES ('HUNGO', 'Hungry Owl All-Night Grocers', 'Patricia McKenna', 'Sales Associate', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland', '2967 542', '2967 3333'); +INSERT INTO customers VALUES ('ISLAT', 'Island Trading', 'Helen Bennett', 'Marketing Manager', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK', '(198) 555-8888', NULL); +INSERT INTO customers VALUES ('KOENE', 'Königlich Essen', 'Philip Cramer', 'Sales Associate', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany', '0555-09876', NULL); +INSERT INTO customers VALUES ('LACOR', 'La corne d''abondance', 'Daniel Tonini', 'Sales Representative', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France', '30.59.84.10', '30.59.85.11'); +INSERT INTO customers VALUES ('LAMAI', 'La maison d''Asie', 'Annette Roulet', 'Sales Manager', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France', '61.77.61.10', '61.77.61.11'); +INSERT INTO customers VALUES ('LAUGB', 'Laughing Bacchus Wine Cellars', 'Yoshi Tannamuri', 'Marketing Assistant', '1900 Oak St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada', '(604) 555-3392', '(604) 555-7293'); +INSERT INTO customers VALUES ('LAZYK', 'Lazy K Kountry Store', 'John Steel', 'Marketing Manager', '12 Orchestra Terrace', 'Walla Walla', 'WA', '99362', 'USA', '(509) 555-7969', '(509) 555-6221'); +INSERT INTO customers VALUES ('LEHMS', 'Lehmanns Marktstand', 'Renate Messner', 'Sales Representative', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany', '069-0245984', '069-0245874'); +INSERT INTO customers VALUES ('LETSS', 'Let''s Stop N Shop', 'Jaime Yorres', 'Owner', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA', '(415) 555-5938', NULL); +INSERT INTO customers VALUES ('LILAS', 'LILA-Supermercado', 'Carlos González', 'Accounting Manager', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela', '(9) 331-6954', '(9) 331-7256'); +INSERT INTO customers VALUES ('LINOD', 'LINO-Delicateses', 'Felipe Izquierdo', 'Owner', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela', '(8) 34-56-12', '(8) 34-93-93'); +INSERT INTO customers VALUES ('LONEP', 'Lonesome Pine Restaurant', 'Fran Wilson', 'Sales Manager', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA', '(503) 555-9573', '(503) 555-9646'); +INSERT INTO customers VALUES ('MAGAA', 'Magazzini Alimentari Riuniti', 'Giovanni Rovelli', 'Marketing Manager', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy', '035-640230', '035-640231'); +INSERT INTO customers VALUES ('MAISD', 'Maison Dewey', 'Catherine Dewey', 'Sales Agent', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium', '(02) 201 24 67', '(02) 201 24 68'); +INSERT INTO customers VALUES ('MEREP', 'Mère Paillarde', 'Jean Fresnière', 'Marketing Assistant', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada', '(514) 555-8054', '(514) 555-8055'); +INSERT INTO customers VALUES ('MORGK', 'Morgenstern Gesundkost', 'Alexander Feuer', 'Marketing Assistant', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany', '0342-023176', NULL); +INSERT INTO customers VALUES ('NORTS', 'North/South', 'Simon Crowther', 'Sales Associate', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK', '(171) 555-7733', '(171) 555-2530'); +INSERT INTO customers VALUES ('OCEAN', 'Océano Atlántico Ltda.', 'Yvonne Moncada', 'Sales Agent', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 135-5333', '(1) 135-5535'); +INSERT INTO customers VALUES ('OLDWO', 'Old World Delicatessen', 'Rene Phillips', 'Sales Representative', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA', '(907) 555-7584', '(907) 555-2880'); +INSERT INTO customers VALUES ('OTTIK', 'Ottilies Käseladen', 'Henriette Pfalzheim', 'Owner', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany', '0221-0644327', '0221-0765721'); +INSERT INTO customers VALUES ('PARIS', 'Paris spécialités', 'Marie Bertrand', 'Owner', '265, boulevard Charonne', 'Paris', NULL, '75012', 'France', '(1) 42.34.22.66', '(1) 42.34.22.77'); +INSERT INTO customers VALUES ('PERIC', 'Pericles Comidas clásicas', 'Guillermo Fernández', 'Sales Representative', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico', '(5) 552-3745', '(5) 545-3745'); +INSERT INTO customers VALUES ('PICCO', 'Piccolo und mehr', 'Georg Pipps', 'Sales Manager', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria', '6562-9722', '6562-9723'); +INSERT INTO customers VALUES ('PRINI', 'Princesa Isabel Vinhos', 'Isabel de Castro', 'Sales Representative', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal', '(1) 356-5634', NULL); +INSERT INTO customers VALUES ('QUEDE', 'Que Delícia', 'Bernardo Batista', 'Accounting Manager', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil', '(21) 555-4252', '(21) 555-4545'); +INSERT INTO customers VALUES ('QUEEN', 'Queen Cozinha', 'Lúcia Carvalho', 'Marketing Assistant', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil', '(11) 555-1189', NULL); +INSERT INTO customers VALUES ('QUICK', 'QUICK-Stop', 'Horst Kloss', 'Accounting Manager', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany', '0372-035188', NULL); +INSERT INTO customers VALUES ('RANCH', 'Rancho grande', 'Sergio Gutiérrez', 'Sales Representative', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina', '(1) 123-5555', '(1) 123-5556'); +INSERT INTO customers VALUES ('RATTC', 'Rattlesnake Canyon Grocery', 'Paula Wilson', 'Assistant Sales Representative', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA', '(505) 555-5939', '(505) 555-3620'); +INSERT INTO customers VALUES ('REGGC', 'Reggiani Caseifici', 'Maurizio Moroni', 'Sales Associate', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy', '0522-556721', '0522-556722'); +INSERT INTO customers VALUES ('RICAR', 'Ricardo Adocicados', 'Janete Limeira', 'Assistant Sales Agent', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil', '(21) 555-3412', NULL); +INSERT INTO customers VALUES ('RICSU', 'Richter Supermarkt', 'Michael Holz', 'Sales Manager', 'Grenzacherweg 237', 'Genève', NULL, '1203', 'Switzerland', '0897-034214', NULL); +INSERT INTO customers VALUES ('ROMEY', 'Romero y tomillo', 'Alejandra Camino', 'Accounting Manager', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain', '(91) 745 6200', '(91) 745 6210'); +INSERT INTO customers VALUES ('SANTG', 'Santé Gourmet', 'Jonas Bergulfsen', 'Owner', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway', '07-98 92 35', '07-98 92 47'); +INSERT INTO customers VALUES ('SAVEA', 'Save-a-lot Markets', 'Jose Pavarotti', 'Sales Representative', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA', '(208) 555-8097', NULL); +INSERT INTO customers VALUES ('SEVES', 'Seven Seas Imports', 'Hari Kumar', 'Sales Manager', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK', '(171) 555-1717', '(171) 555-5646'); +INSERT INTO customers VALUES ('SIMOB', 'Simons bistro', 'Jytte Petersen', 'Owner', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark', '31 12 34 56', '31 13 35 57'); +INSERT INTO customers VALUES ('SPECD', 'Spécialités du monde', 'Dominique Perrier', 'Marketing Manager', '25, rue Lauriston', 'Paris', NULL, '75016', 'France', '(1) 47.55.60.10', '(1) 47.55.60.20'); +INSERT INTO customers VALUES ('SPLIR', 'Split Rail Beer & Ale', 'Art Braunschweiger', 'Sales Manager', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA', '(307) 555-4680', '(307) 555-6525'); +INSERT INTO customers VALUES ('SUPRD', 'Suprêmes délices', 'Pascale Cartrain', 'Accounting Manager', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium', '(071) 23 67 22 20', '(071) 23 67 22 21'); +INSERT INTO customers VALUES ('THEBI', 'The Big Cheese', 'Liz Nixon', 'Marketing Manager', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA', '(503) 555-3612', NULL); +INSERT INTO customers VALUES ('THECR', 'The Cracker Box', 'Liu Wong', 'Marketing Assistant', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA', '(406) 555-5834', '(406) 555-8083'); +INSERT INTO customers VALUES ('TOMSP', 'Toms Spezialitäten', 'Karin Josephs', 'Marketing Manager', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany', '0251-031259', '0251-035695'); +INSERT INTO customers VALUES ('TORTU', 'Tortuga Restaurante', 'Miguel Angel Paolino', 'Owner', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico', '(5) 555-2933', NULL); +INSERT INTO customers VALUES ('TRADH', 'Tradição Hipermercados', 'Anabela Domingues', 'Sales Representative', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil', '(11) 555-2167', '(11) 555-2168'); +INSERT INTO customers VALUES ('TRAIH', 'Trail''s Head Gourmet Provisioners', 'Helvetius Nagy', 'Sales Associate', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA', '(206) 555-8257', '(206) 555-2174'); +INSERT INTO customers VALUES ('VAFFE', 'Vaffeljernet', 'Palle Ibsen', 'Sales Manager', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark', '86 21 32 43', '86 22 33 44'); +INSERT INTO customers VALUES ('VICTE', 'Victuailles en stock', 'Mary Saveley', 'Sales Agent', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France', '78.32.54.86', '78.32.54.87'); +INSERT INTO customers VALUES ('VINET', 'Vins et alcools Chevalier', 'Paul Henriot', 'Accounting Manager', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France', '26.47.15.10', '26.47.15.11'); +INSERT INTO customers VALUES ('WANDK', 'Die Wandernde Kuh', 'Rita Müller', 'Sales Representative', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany', '0711-020361', '0711-035428'); +INSERT INTO customers VALUES ('WARTH', 'Wartian Herkku', 'Pirkko Koskitalo', 'Accounting Manager', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland', '981-443655', '981-443655'); +INSERT INTO customers VALUES ('WELLI', 'Wellington Importadora', 'Paula Parente', 'Sales Manager', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil', '(14) 555-8122', NULL); +INSERT INTO customers VALUES ('WHITC', 'White Clover Markets', 'Karl Jablonski', 'Owner', '305 - 14th Ave. S. Suite 3B', 'Seattle', 'WA', '98128', 'USA', '(206) 555-4112', '(206) 555-4115'); +INSERT INTO customers VALUES ('WILMK', 'Wilman Kala', 'Matti Karttunen', 'Owner/Marketing Assistant', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland', '90-224 8858', '90-224 8858'); +INSERT INTO customers VALUES ('WOLZA', 'Wolski Zajazd', 'Zbyszek Piestrzeniewicz', 'Owner', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland', '(26) 642-7012', '(26) 642-7012'); + + +-- +-- Data for Name: employees; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO employees VALUES (1, 'Davolio', 'Nancy', 'Sales Representative', 'Ms.', '1948-12-08', '1992-05-01', '507 - 20th Ave. E.\nApt. 2A', 'Seattle', 'WA', '98122', 'USA', '(206) 555-9857', '5467', '\x', 'Education includes a BA in psychology from Colorado State University in 1970. She also completed The Art of the Cold Call. Nancy is a member of Toastmasters International.', 2, 'http://accweb/emmployees/davolio.bmp'); +INSERT INTO employees VALUES (2, 'Fuller', 'Andrew', 'Vice President, Sales', 'Dr.', '1952-02-19', '1992-08-14', '908 W. Capital Way', 'Tacoma', 'WA', '98401', 'USA', '(206) 555-9482', '3457', '\x', 'Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association.', NULL, 'http://accweb/emmployees/fuller.bmp'); +INSERT INTO employees VALUES (3, 'Leverling', 'Janet', 'Sales Representative', 'Ms.', '1963-08-30', '1992-04-01', '722 Moss Bay Blvd.', 'Kirkland', 'WA', '98033', 'USA', '(206) 555-3412', '3355', '\x', 'Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992.', 2, 'http://accweb/emmployees/leverling.bmp'); +INSERT INTO employees VALUES (4, 'Peacock', 'Margaret', 'Sales Representative', 'Mrs.', '1937-09-19', '1993-05-03', '4110 Old Redmond Rd.', 'Redmond', 'WA', '98052', 'USA', '(206) 555-8122', '5176', '\x', 'Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992.', 2, 'http://accweb/emmployees/peacock.bmp'); +INSERT INTO employees VALUES (5, 'Buchanan', 'Steven', 'Sales Manager', 'Mr.', '1955-03-04', '1993-10-17', '14 Garrett Hill', 'London', NULL, 'SW1 8JR', 'UK', '(71) 555-4848', '3453', '\x', 'Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses Successful Telemarketing and International Sales Management. He is fluent in French.', 2, 'http://accweb/emmployees/buchanan.bmp'); +INSERT INTO employees VALUES (6, 'Suyama', 'Michael', 'Sales Representative', 'Mr.', '1963-07-02', '1993-10-17', 'Coventry House\nMiner Rd.', 'London', NULL, 'EC2 7JR', 'UK', '(71) 555-7773', '428', '\x', 'Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses Multi-Cultural Selling and Time Management for the Sales Professional. He is fluent in Japanese and can read and write French, Portuguese, and Spanish.', 5, 'http://accweb/emmployees/davolio.bmp'); +INSERT INTO employees VALUES (7, 'King', 'Robert', 'Sales Representative', 'Mr.', '1960-05-29', '1994-01-02', 'Edgeham Hollow\nWinchester Way', 'London', NULL, 'RG1 9SP', 'UK', '(71) 555-5598', '465', '\x', 'Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled Selling in Europe, he was transferred to the London office in March 1993.', 5, 'http://accweb/emmployees/davolio.bmp'); +INSERT INTO employees VALUES (8, 'Callahan', 'Laura', 'Inside Sales Coordinator', 'Ms.', '1958-01-09', '1994-03-05', '4726 - 11th Ave. N.E.', 'Seattle', 'WA', '98105', 'USA', '(206) 555-1189', '2344', '\x', 'Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French.', 2, 'http://accweb/emmployees/davolio.bmp'); +INSERT INTO employees VALUES (9, 'Dodsworth', 'Anne', 'Sales Representative', 'Ms.', '1966-01-27', '1994-11-15', '7 Houndstooth Rd.', 'London', NULL, 'WG2 7LT', 'UK', '(71) 555-4444', '452', '\x', 'Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German.', 5, 'http://accweb/emmployees/davolio.bmp'); + + +-- +-- Data for Name: employee_territories; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO employee_territories VALUES (1, '06897'); +INSERT INTO employee_territories VALUES (1, '19713'); +INSERT INTO employee_territories VALUES (2, '01581'); +INSERT INTO employee_territories VALUES (2, '01730'); +INSERT INTO employee_territories VALUES (2, '01833'); +INSERT INTO employee_territories VALUES (2, '02116'); +INSERT INTO employee_territories VALUES (2, '02139'); +INSERT INTO employee_territories VALUES (2, '02184'); +INSERT INTO employee_territories VALUES (2, '40222'); +INSERT INTO employee_territories VALUES (3, '30346'); +INSERT INTO employee_territories VALUES (3, '31406'); +INSERT INTO employee_territories VALUES (3, '32859'); +INSERT INTO employee_territories VALUES (3, '33607'); +INSERT INTO employee_territories VALUES (4, '20852'); +INSERT INTO employee_territories VALUES (4, '27403'); +INSERT INTO employee_territories VALUES (4, '27511'); +INSERT INTO employee_territories VALUES (5, '02903'); +INSERT INTO employee_territories VALUES (5, '07960'); +INSERT INTO employee_territories VALUES (5, '08837'); +INSERT INTO employee_territories VALUES (5, '10019'); +INSERT INTO employee_territories VALUES (5, '10038'); +INSERT INTO employee_territories VALUES (5, '11747'); +INSERT INTO employee_territories VALUES (5, '14450'); +INSERT INTO employee_territories VALUES (6, '85014'); +INSERT INTO employee_territories VALUES (6, '85251'); +INSERT INTO employee_territories VALUES (6, '98004'); +INSERT INTO employee_territories VALUES (6, '98052'); +INSERT INTO employee_territories VALUES (6, '98104'); +INSERT INTO employee_territories VALUES (7, '60179'); +INSERT INTO employee_territories VALUES (7, '60601'); +INSERT INTO employee_territories VALUES (7, '80202'); +INSERT INTO employee_territories VALUES (7, '80909'); +INSERT INTO employee_territories VALUES (7, '90405'); +INSERT INTO employee_territories VALUES (7, '94025'); +INSERT INTO employee_territories VALUES (7, '94105'); +INSERT INTO employee_territories VALUES (7, '95008'); +INSERT INTO employee_territories VALUES (7, '95054'); +INSERT INTO employee_territories VALUES (7, '95060'); +INSERT INTO employee_territories VALUES (8, '19428'); +INSERT INTO employee_territories VALUES (8, '44122'); +INSERT INTO employee_territories VALUES (8, '45839'); +INSERT INTO employee_territories VALUES (8, '53404'); +INSERT INTO employee_territories VALUES (9, '03049'); +INSERT INTO employee_territories VALUES (9, '03801'); +INSERT INTO employee_territories VALUES (9, '48075'); +INSERT INTO employee_territories VALUES (9, '48084'); +INSERT INTO employee_territories VALUES (9, '48304'); +INSERT INTO employee_territories VALUES (9, '55113'); +INSERT INTO employee_territories VALUES (9, '55439'); + + +-- +-- Data for Name: order_details; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO order_details VALUES (10248, 11, 14, 12, 0); +INSERT INTO order_details VALUES (10248, 42, 9.80000019, 10, 0); +INSERT INTO order_details VALUES (10248, 72, 34.7999992, 5, 0); +INSERT INTO order_details VALUES (10249, 14, 18.6000004, 9, 0); +INSERT INTO order_details VALUES (10249, 51, 42.4000015, 40, 0); +INSERT INTO order_details VALUES (10250, 41, 7.69999981, 10, 0); +INSERT INTO order_details VALUES (10250, 51, 42.4000015, 35, 0.150000006); +INSERT INTO order_details VALUES (10250, 65, 16.7999992, 15, 0.150000006); +INSERT INTO order_details VALUES (10251, 22, 16.7999992, 6, 0.0500000007); +INSERT INTO order_details VALUES (10251, 57, 15.6000004, 15, 0.0500000007); +INSERT INTO order_details VALUES (10251, 65, 16.7999992, 20, 0); +INSERT INTO order_details VALUES (10252, 20, 64.8000031, 40, 0.0500000007); +INSERT INTO order_details VALUES (10252, 33, 2, 25, 0.0500000007); +INSERT INTO order_details VALUES (10252, 60, 27.2000008, 40, 0); +INSERT INTO order_details VALUES (10253, 31, 10, 20, 0); +INSERT INTO order_details VALUES (10253, 39, 14.3999996, 42, 0); +INSERT INTO order_details VALUES (10253, 49, 16, 40, 0); +INSERT INTO order_details VALUES (10254, 24, 3.5999999, 15, 0.150000006); +INSERT INTO order_details VALUES (10254, 55, 19.2000008, 21, 0.150000006); +INSERT INTO order_details VALUES (10254, 74, 8, 21, 0); +INSERT INTO order_details VALUES (10255, 2, 15.1999998, 20, 0); +INSERT INTO order_details VALUES (10255, 16, 13.8999996, 35, 0); +INSERT INTO order_details VALUES (10255, 36, 15.1999998, 25, 0); +INSERT INTO order_details VALUES (10255, 59, 44, 30, 0); +INSERT INTO order_details VALUES (10256, 53, 26.2000008, 15, 0); +INSERT INTO order_details VALUES (10256, 77, 10.3999996, 12, 0); +INSERT INTO order_details VALUES (10257, 27, 35.0999985, 25, 0); +INSERT INTO order_details VALUES (10257, 39, 14.3999996, 6, 0); +INSERT INTO order_details VALUES (10257, 77, 10.3999996, 15, 0); +INSERT INTO order_details VALUES (10258, 2, 15.1999998, 50, 0.200000003); +INSERT INTO order_details VALUES (10258, 5, 17, 65, 0.200000003); +INSERT INTO order_details VALUES (10258, 32, 25.6000004, 6, 0.200000003); +INSERT INTO order_details VALUES (10259, 21, 8, 10, 0); +INSERT INTO order_details VALUES (10259, 37, 20.7999992, 1, 0); +INSERT INTO order_details VALUES (10260, 41, 7.69999981, 16, 0.25); +INSERT INTO order_details VALUES (10260, 57, 15.6000004, 50, 0); +INSERT INTO order_details VALUES (10260, 62, 39.4000015, 15, 0.25); +INSERT INTO order_details VALUES (10260, 70, 12, 21, 0.25); +INSERT INTO order_details VALUES (10261, 21, 8, 20, 0); +INSERT INTO order_details VALUES (10261, 35, 14.3999996, 20, 0); +INSERT INTO order_details VALUES (10262, 5, 17, 12, 0.200000003); +INSERT INTO order_details VALUES (10262, 7, 24, 15, 0); +INSERT INTO order_details VALUES (10262, 56, 30.3999996, 2, 0); +INSERT INTO order_details VALUES (10263, 16, 13.8999996, 60, 0.25); +INSERT INTO order_details VALUES (10263, 24, 3.5999999, 28, 0); +INSERT INTO order_details VALUES (10263, 30, 20.7000008, 60, 0.25); +INSERT INTO order_details VALUES (10263, 74, 8, 36, 0.25); +INSERT INTO order_details VALUES (10264, 2, 15.1999998, 35, 0); +INSERT INTO order_details VALUES (10264, 41, 7.69999981, 25, 0.150000006); +INSERT INTO order_details VALUES (10265, 17, 31.2000008, 30, 0); +INSERT INTO order_details VALUES (10265, 70, 12, 20, 0); +INSERT INTO order_details VALUES (10266, 12, 30.3999996, 12, 0.0500000007); +INSERT INTO order_details VALUES (10267, 40, 14.6999998, 50, 0); +INSERT INTO order_details VALUES (10267, 59, 44, 70, 0.150000006); +INSERT INTO order_details VALUES (10267, 76, 14.3999996, 15, 0.150000006); +INSERT INTO order_details VALUES (10268, 29, 99, 10, 0); +INSERT INTO order_details VALUES (10268, 72, 27.7999992, 4, 0); +INSERT INTO order_details VALUES (10269, 33, 2, 60, 0.0500000007); +INSERT INTO order_details VALUES (10269, 72, 27.7999992, 20, 0.0500000007); +INSERT INTO order_details VALUES (10270, 36, 15.1999998, 30, 0); +INSERT INTO order_details VALUES (10270, 43, 36.7999992, 25, 0); +INSERT INTO order_details VALUES (10271, 33, 2, 24, 0); +INSERT INTO order_details VALUES (10272, 20, 64.8000031, 6, 0); +INSERT INTO order_details VALUES (10272, 31, 10, 40, 0); +INSERT INTO order_details VALUES (10272, 72, 27.7999992, 24, 0); +INSERT INTO order_details VALUES (10273, 10, 24.7999992, 24, 0.0500000007); +INSERT INTO order_details VALUES (10273, 31, 10, 15, 0.0500000007); +INSERT INTO order_details VALUES (10273, 33, 2, 20, 0); +INSERT INTO order_details VALUES (10273, 40, 14.6999998, 60, 0.0500000007); +INSERT INTO order_details VALUES (10273, 76, 14.3999996, 33, 0.0500000007); +INSERT INTO order_details VALUES (10274, 71, 17.2000008, 20, 0); +INSERT INTO order_details VALUES (10274, 72, 27.7999992, 7, 0); +INSERT INTO order_details VALUES (10275, 24, 3.5999999, 12, 0.0500000007); +INSERT INTO order_details VALUES (10275, 59, 44, 6, 0.0500000007); +INSERT INTO order_details VALUES (10276, 10, 24.7999992, 15, 0); +INSERT INTO order_details VALUES (10276, 13, 4.80000019, 10, 0); +INSERT INTO order_details VALUES (10277, 28, 36.4000015, 20, 0); +INSERT INTO order_details VALUES (10277, 62, 39.4000015, 12, 0); +INSERT INTO order_details VALUES (10278, 44, 15.5, 16, 0); +INSERT INTO order_details VALUES (10278, 59, 44, 15, 0); +INSERT INTO order_details VALUES (10278, 63, 35.0999985, 8, 0); +INSERT INTO order_details VALUES (10278, 73, 12, 25, 0); +INSERT INTO order_details VALUES (10279, 17, 31.2000008, 15, 0.25); +INSERT INTO order_details VALUES (10280, 24, 3.5999999, 12, 0); +INSERT INTO order_details VALUES (10280, 55, 19.2000008, 20, 0); +INSERT INTO order_details VALUES (10280, 75, 6.19999981, 30, 0); +INSERT INTO order_details VALUES (10281, 19, 7.30000019, 1, 0); +INSERT INTO order_details VALUES (10281, 24, 3.5999999, 6, 0); +INSERT INTO order_details VALUES (10281, 35, 14.3999996, 4, 0); +INSERT INTO order_details VALUES (10282, 30, 20.7000008, 6, 0); +INSERT INTO order_details VALUES (10282, 57, 15.6000004, 2, 0); +INSERT INTO order_details VALUES (10283, 15, 12.3999996, 20, 0); +INSERT INTO order_details VALUES (10283, 19, 7.30000019, 18, 0); +INSERT INTO order_details VALUES (10283, 60, 27.2000008, 35, 0); +INSERT INTO order_details VALUES (10283, 72, 27.7999992, 3, 0); +INSERT INTO order_details VALUES (10284, 27, 35.0999985, 15, 0.25); +INSERT INTO order_details VALUES (10284, 44, 15.5, 21, 0); +INSERT INTO order_details VALUES (10284, 60, 27.2000008, 20, 0.25); +INSERT INTO order_details VALUES (10284, 67, 11.1999998, 5, 0.25); +INSERT INTO order_details VALUES (10285, 1, 14.3999996, 45, 0.200000003); +INSERT INTO order_details VALUES (10285, 40, 14.6999998, 40, 0.200000003); +INSERT INTO order_details VALUES (10285, 53, 26.2000008, 36, 0.200000003); +INSERT INTO order_details VALUES (10286, 35, 14.3999996, 100, 0); +INSERT INTO order_details VALUES (10286, 62, 39.4000015, 40, 0); +INSERT INTO order_details VALUES (10287, 16, 13.8999996, 40, 0.150000006); +INSERT INTO order_details VALUES (10287, 34, 11.1999998, 20, 0); +INSERT INTO order_details VALUES (10287, 46, 9.60000038, 15, 0.150000006); +INSERT INTO order_details VALUES (10288, 54, 5.9000001, 10, 0.100000001); +INSERT INTO order_details VALUES (10288, 68, 10, 3, 0.100000001); +INSERT INTO order_details VALUES (10289, 3, 8, 30, 0); +INSERT INTO order_details VALUES (10289, 64, 26.6000004, 9, 0); +INSERT INTO order_details VALUES (10290, 5, 17, 20, 0); +INSERT INTO order_details VALUES (10290, 29, 99, 15, 0); +INSERT INTO order_details VALUES (10290, 49, 16, 15, 0); +INSERT INTO order_details VALUES (10290, 77, 10.3999996, 10, 0); +INSERT INTO order_details VALUES (10291, 13, 4.80000019, 20, 0.100000001); +INSERT INTO order_details VALUES (10291, 44, 15.5, 24, 0.100000001); +INSERT INTO order_details VALUES (10291, 51, 42.4000015, 2, 0.100000001); +INSERT INTO order_details VALUES (10292, 20, 64.8000031, 20, 0); +INSERT INTO order_details VALUES (10293, 18, 50, 12, 0); +INSERT INTO order_details VALUES (10293, 24, 3.5999999, 10, 0); +INSERT INTO order_details VALUES (10293, 63, 35.0999985, 5, 0); +INSERT INTO order_details VALUES (10293, 75, 6.19999981, 6, 0); +INSERT INTO order_details VALUES (10294, 1, 14.3999996, 18, 0); +INSERT INTO order_details VALUES (10294, 17, 31.2000008, 15, 0); +INSERT INTO order_details VALUES (10294, 43, 36.7999992, 15, 0); +INSERT INTO order_details VALUES (10294, 60, 27.2000008, 21, 0); +INSERT INTO order_details VALUES (10294, 75, 6.19999981, 6, 0); +INSERT INTO order_details VALUES (10295, 56, 30.3999996, 4, 0); +INSERT INTO order_details VALUES (10296, 11, 16.7999992, 12, 0); +INSERT INTO order_details VALUES (10296, 16, 13.8999996, 30, 0); +INSERT INTO order_details VALUES (10296, 69, 28.7999992, 15, 0); +INSERT INTO order_details VALUES (10297, 39, 14.3999996, 60, 0); +INSERT INTO order_details VALUES (10297, 72, 27.7999992, 20, 0); +INSERT INTO order_details VALUES (10298, 2, 15.1999998, 40, 0); +INSERT INTO order_details VALUES (10298, 36, 15.1999998, 40, 0.25); +INSERT INTO order_details VALUES (10298, 59, 44, 30, 0.25); +INSERT INTO order_details VALUES (10298, 62, 39.4000015, 15, 0); +INSERT INTO order_details VALUES (10299, 19, 7.30000019, 15, 0); +INSERT INTO order_details VALUES (10299, 70, 12, 20, 0); +INSERT INTO order_details VALUES (10300, 66, 13.6000004, 30, 0); +INSERT INTO order_details VALUES (10300, 68, 10, 20, 0); +INSERT INTO order_details VALUES (10301, 40, 14.6999998, 10, 0); +INSERT INTO order_details VALUES (10301, 56, 30.3999996, 20, 0); +INSERT INTO order_details VALUES (10302, 17, 31.2000008, 40, 0); +INSERT INTO order_details VALUES (10302, 28, 36.4000015, 28, 0); +INSERT INTO order_details VALUES (10302, 43, 36.7999992, 12, 0); +INSERT INTO order_details VALUES (10303, 40, 14.6999998, 40, 0.100000001); +INSERT INTO order_details VALUES (10303, 65, 16.7999992, 30, 0.100000001); +INSERT INTO order_details VALUES (10303, 68, 10, 15, 0.100000001); +INSERT INTO order_details VALUES (10304, 49, 16, 30, 0); +INSERT INTO order_details VALUES (10304, 59, 44, 10, 0); +INSERT INTO order_details VALUES (10304, 71, 17.2000008, 2, 0); +INSERT INTO order_details VALUES (10305, 18, 50, 25, 0.100000001); +INSERT INTO order_details VALUES (10305, 29, 99, 25, 0.100000001); +INSERT INTO order_details VALUES (10305, 39, 14.3999996, 30, 0.100000001); +INSERT INTO order_details VALUES (10306, 30, 20.7000008, 10, 0); +INSERT INTO order_details VALUES (10306, 53, 26.2000008, 10, 0); +INSERT INTO order_details VALUES (10306, 54, 5.9000001, 5, 0); +INSERT INTO order_details VALUES (10307, 62, 39.4000015, 10, 0); +INSERT INTO order_details VALUES (10307, 68, 10, 3, 0); +INSERT INTO order_details VALUES (10308, 69, 28.7999992, 1, 0); +INSERT INTO order_details VALUES (10308, 70, 12, 5, 0); +INSERT INTO order_details VALUES (10309, 4, 17.6000004, 20, 0); +INSERT INTO order_details VALUES (10309, 6, 20, 30, 0); +INSERT INTO order_details VALUES (10309, 42, 11.1999998, 2, 0); +INSERT INTO order_details VALUES (10309, 43, 36.7999992, 20, 0); +INSERT INTO order_details VALUES (10309, 71, 17.2000008, 3, 0); +INSERT INTO order_details VALUES (10310, 16, 13.8999996, 10, 0); +INSERT INTO order_details VALUES (10310, 62, 39.4000015, 5, 0); +INSERT INTO order_details VALUES (10311, 42, 11.1999998, 6, 0); +INSERT INTO order_details VALUES (10311, 69, 28.7999992, 7, 0); +INSERT INTO order_details VALUES (10312, 28, 36.4000015, 4, 0); +INSERT INTO order_details VALUES (10312, 43, 36.7999992, 24, 0); +INSERT INTO order_details VALUES (10312, 53, 26.2000008, 20, 0); +INSERT INTO order_details VALUES (10312, 75, 6.19999981, 10, 0); +INSERT INTO order_details VALUES (10313, 36, 15.1999998, 12, 0); +INSERT INTO order_details VALUES (10314, 32, 25.6000004, 40, 0.100000001); +INSERT INTO order_details VALUES (10314, 58, 10.6000004, 30, 0.100000001); +INSERT INTO order_details VALUES (10314, 62, 39.4000015, 25, 0.100000001); +INSERT INTO order_details VALUES (10315, 34, 11.1999998, 14, 0); +INSERT INTO order_details VALUES (10315, 70, 12, 30, 0); +INSERT INTO order_details VALUES (10316, 41, 7.69999981, 10, 0); +INSERT INTO order_details VALUES (10316, 62, 39.4000015, 70, 0); +INSERT INTO order_details VALUES (10317, 1, 14.3999996, 20, 0); +INSERT INTO order_details VALUES (10318, 41, 7.69999981, 20, 0); +INSERT INTO order_details VALUES (10318, 76, 14.3999996, 6, 0); +INSERT INTO order_details VALUES (10319, 17, 31.2000008, 8, 0); +INSERT INTO order_details VALUES (10319, 28, 36.4000015, 14, 0); +INSERT INTO order_details VALUES (10319, 76, 14.3999996, 30, 0); +INSERT INTO order_details VALUES (10320, 71, 17.2000008, 30, 0); +INSERT INTO order_details VALUES (10321, 35, 14.3999996, 10, 0); +INSERT INTO order_details VALUES (10322, 52, 5.5999999, 20, 0); +INSERT INTO order_details VALUES (10323, 15, 12.3999996, 5, 0); +INSERT INTO order_details VALUES (10323, 25, 11.1999998, 4, 0); +INSERT INTO order_details VALUES (10323, 39, 14.3999996, 4, 0); +INSERT INTO order_details VALUES (10324, 16, 13.8999996, 21, 0.150000006); +INSERT INTO order_details VALUES (10324, 35, 14.3999996, 70, 0.150000006); +INSERT INTO order_details VALUES (10324, 46, 9.60000038, 30, 0); +INSERT INTO order_details VALUES (10324, 59, 44, 40, 0.150000006); +INSERT INTO order_details VALUES (10324, 63, 35.0999985, 80, 0.150000006); +INSERT INTO order_details VALUES (10325, 6, 20, 6, 0); +INSERT INTO order_details VALUES (10325, 13, 4.80000019, 12, 0); +INSERT INTO order_details VALUES (10325, 14, 18.6000004, 9, 0); +INSERT INTO order_details VALUES (10325, 31, 10, 4, 0); +INSERT INTO order_details VALUES (10325, 72, 27.7999992, 40, 0); +INSERT INTO order_details VALUES (10326, 4, 17.6000004, 24, 0); +INSERT INTO order_details VALUES (10326, 57, 15.6000004, 16, 0); +INSERT INTO order_details VALUES (10326, 75, 6.19999981, 50, 0); +INSERT INTO order_details VALUES (10327, 2, 15.1999998, 25, 0.200000003); +INSERT INTO order_details VALUES (10327, 11, 16.7999992, 50, 0.200000003); +INSERT INTO order_details VALUES (10327, 30, 20.7000008, 35, 0.200000003); +INSERT INTO order_details VALUES (10327, 58, 10.6000004, 30, 0.200000003); +INSERT INTO order_details VALUES (10328, 59, 44, 9, 0); +INSERT INTO order_details VALUES (10328, 65, 16.7999992, 40, 0); +INSERT INTO order_details VALUES (10328, 68, 10, 10, 0); +INSERT INTO order_details VALUES (10329, 19, 7.30000019, 10, 0.0500000007); +INSERT INTO order_details VALUES (10329, 30, 20.7000008, 8, 0.0500000007); +INSERT INTO order_details VALUES (10329, 38, 210.800003, 20, 0.0500000007); +INSERT INTO order_details VALUES (10329, 56, 30.3999996, 12, 0.0500000007); +INSERT INTO order_details VALUES (10330, 26, 24.8999996, 50, 0.150000006); +INSERT INTO order_details VALUES (10330, 72, 27.7999992, 25, 0.150000006); +INSERT INTO order_details VALUES (10331, 54, 5.9000001, 15, 0); +INSERT INTO order_details VALUES (10332, 18, 50, 40, 0.200000003); +INSERT INTO order_details VALUES (10332, 42, 11.1999998, 10, 0.200000003); +INSERT INTO order_details VALUES (10332, 47, 7.5999999, 16, 0.200000003); +INSERT INTO order_details VALUES (10333, 14, 18.6000004, 10, 0); +INSERT INTO order_details VALUES (10333, 21, 8, 10, 0.100000001); +INSERT INTO order_details VALUES (10333, 71, 17.2000008, 40, 0.100000001); +INSERT INTO order_details VALUES (10334, 52, 5.5999999, 8, 0); +INSERT INTO order_details VALUES (10334, 68, 10, 10, 0); +INSERT INTO order_details VALUES (10335, 2, 15.1999998, 7, 0.200000003); +INSERT INTO order_details VALUES (10335, 31, 10, 25, 0.200000003); +INSERT INTO order_details VALUES (10335, 32, 25.6000004, 6, 0.200000003); +INSERT INTO order_details VALUES (10335, 51, 42.4000015, 48, 0.200000003); +INSERT INTO order_details VALUES (10336, 4, 17.6000004, 18, 0.100000001); +INSERT INTO order_details VALUES (10337, 23, 7.19999981, 40, 0); +INSERT INTO order_details VALUES (10337, 26, 24.8999996, 24, 0); +INSERT INTO order_details VALUES (10337, 36, 15.1999998, 20, 0); +INSERT INTO order_details VALUES (10337, 37, 20.7999992, 28, 0); +INSERT INTO order_details VALUES (10337, 72, 27.7999992, 25, 0); +INSERT INTO order_details VALUES (10338, 17, 31.2000008, 20, 0); +INSERT INTO order_details VALUES (10338, 30, 20.7000008, 15, 0); +INSERT INTO order_details VALUES (10339, 4, 17.6000004, 10, 0); +INSERT INTO order_details VALUES (10339, 17, 31.2000008, 70, 0.0500000007); +INSERT INTO order_details VALUES (10339, 62, 39.4000015, 28, 0); +INSERT INTO order_details VALUES (10340, 18, 50, 20, 0.0500000007); +INSERT INTO order_details VALUES (10340, 41, 7.69999981, 12, 0.0500000007); +INSERT INTO order_details VALUES (10340, 43, 36.7999992, 40, 0.0500000007); +INSERT INTO order_details VALUES (10341, 33, 2, 8, 0); +INSERT INTO order_details VALUES (10341, 59, 44, 9, 0.150000006); +INSERT INTO order_details VALUES (10342, 2, 15.1999998, 24, 0.200000003); +INSERT INTO order_details VALUES (10342, 31, 10, 56, 0.200000003); +INSERT INTO order_details VALUES (10342, 36, 15.1999998, 40, 0.200000003); +INSERT INTO order_details VALUES (10342, 55, 19.2000008, 40, 0.200000003); +INSERT INTO order_details VALUES (10343, 64, 26.6000004, 50, 0); +INSERT INTO order_details VALUES (10343, 68, 10, 4, 0.0500000007); +INSERT INTO order_details VALUES (10343, 76, 14.3999996, 15, 0); +INSERT INTO order_details VALUES (10344, 4, 17.6000004, 35, 0); +INSERT INTO order_details VALUES (10344, 8, 32, 70, 0.25); +INSERT INTO order_details VALUES (10345, 8, 32, 70, 0); +INSERT INTO order_details VALUES (10345, 19, 7.30000019, 80, 0); +INSERT INTO order_details VALUES (10345, 42, 11.1999998, 9, 0); +INSERT INTO order_details VALUES (10346, 17, 31.2000008, 36, 0.100000001); +INSERT INTO order_details VALUES (10346, 56, 30.3999996, 20, 0); +INSERT INTO order_details VALUES (10347, 25, 11.1999998, 10, 0); +INSERT INTO order_details VALUES (10347, 39, 14.3999996, 50, 0.150000006); +INSERT INTO order_details VALUES (10347, 40, 14.6999998, 4, 0); +INSERT INTO order_details VALUES (10347, 75, 6.19999981, 6, 0.150000006); +INSERT INTO order_details VALUES (10348, 1, 14.3999996, 15, 0.150000006); +INSERT INTO order_details VALUES (10348, 23, 7.19999981, 25, 0); +INSERT INTO order_details VALUES (10349, 54, 5.9000001, 24, 0); +INSERT INTO order_details VALUES (10350, 50, 13, 15, 0.100000001); +INSERT INTO order_details VALUES (10350, 69, 28.7999992, 18, 0.100000001); +INSERT INTO order_details VALUES (10351, 38, 210.800003, 20, 0.0500000007); +INSERT INTO order_details VALUES (10351, 41, 7.69999981, 13, 0); +INSERT INTO order_details VALUES (10351, 44, 15.5, 77, 0.0500000007); +INSERT INTO order_details VALUES (10351, 65, 16.7999992, 10, 0.0500000007); +INSERT INTO order_details VALUES (10352, 24, 3.5999999, 10, 0); +INSERT INTO order_details VALUES (10352, 54, 5.9000001, 20, 0.150000006); +INSERT INTO order_details VALUES (10353, 11, 16.7999992, 12, 0.200000003); +INSERT INTO order_details VALUES (10353, 38, 210.800003, 50, 0.200000003); +INSERT INTO order_details VALUES (10354, 1, 14.3999996, 12, 0); +INSERT INTO order_details VALUES (10354, 29, 99, 4, 0); +INSERT INTO order_details VALUES (10355, 24, 3.5999999, 25, 0); +INSERT INTO order_details VALUES (10355, 57, 15.6000004, 25, 0); +INSERT INTO order_details VALUES (10356, 31, 10, 30, 0); +INSERT INTO order_details VALUES (10356, 55, 19.2000008, 12, 0); +INSERT INTO order_details VALUES (10356, 69, 28.7999992, 20, 0); +INSERT INTO order_details VALUES (10357, 10, 24.7999992, 30, 0.200000003); +INSERT INTO order_details VALUES (10357, 26, 24.8999996, 16, 0); +INSERT INTO order_details VALUES (10357, 60, 27.2000008, 8, 0.200000003); +INSERT INTO order_details VALUES (10358, 24, 3.5999999, 10, 0.0500000007); +INSERT INTO order_details VALUES (10358, 34, 11.1999998, 10, 0.0500000007); +INSERT INTO order_details VALUES (10358, 36, 15.1999998, 20, 0.0500000007); +INSERT INTO order_details VALUES (10359, 16, 13.8999996, 56, 0.0500000007); +INSERT INTO order_details VALUES (10359, 31, 10, 70, 0.0500000007); +INSERT INTO order_details VALUES (10359, 60, 27.2000008, 80, 0.0500000007); +INSERT INTO order_details VALUES (10360, 28, 36.4000015, 30, 0); +INSERT INTO order_details VALUES (10360, 29, 99, 35, 0); +INSERT INTO order_details VALUES (10360, 38, 210.800003, 10, 0); +INSERT INTO order_details VALUES (10360, 49, 16, 35, 0); +INSERT INTO order_details VALUES (10360, 54, 5.9000001, 28, 0); +INSERT INTO order_details VALUES (10361, 39, 14.3999996, 54, 0.100000001); +INSERT INTO order_details VALUES (10361, 60, 27.2000008, 55, 0.100000001); +INSERT INTO order_details VALUES (10362, 25, 11.1999998, 50, 0); +INSERT INTO order_details VALUES (10362, 51, 42.4000015, 20, 0); +INSERT INTO order_details VALUES (10362, 54, 5.9000001, 24, 0); +INSERT INTO order_details VALUES (10363, 31, 10, 20, 0); +INSERT INTO order_details VALUES (10363, 75, 6.19999981, 12, 0); +INSERT INTO order_details VALUES (10363, 76, 14.3999996, 12, 0); +INSERT INTO order_details VALUES (10364, 69, 28.7999992, 30, 0); +INSERT INTO order_details VALUES (10364, 71, 17.2000008, 5, 0); +INSERT INTO order_details VALUES (10365, 11, 16.7999992, 24, 0); +INSERT INTO order_details VALUES (10366, 65, 16.7999992, 5, 0); +INSERT INTO order_details VALUES (10366, 77, 10.3999996, 5, 0); +INSERT INTO order_details VALUES (10367, 34, 11.1999998, 36, 0); +INSERT INTO order_details VALUES (10367, 54, 5.9000001, 18, 0); +INSERT INTO order_details VALUES (10367, 65, 16.7999992, 15, 0); +INSERT INTO order_details VALUES (10367, 77, 10.3999996, 7, 0); +INSERT INTO order_details VALUES (10368, 21, 8, 5, 0.100000001); +INSERT INTO order_details VALUES (10368, 28, 36.4000015, 13, 0.100000001); +INSERT INTO order_details VALUES (10368, 57, 15.6000004, 25, 0); +INSERT INTO order_details VALUES (10368, 64, 26.6000004, 35, 0.100000001); +INSERT INTO order_details VALUES (10369, 29, 99, 20, 0); +INSERT INTO order_details VALUES (10369, 56, 30.3999996, 18, 0.25); +INSERT INTO order_details VALUES (10370, 1, 14.3999996, 15, 0.150000006); +INSERT INTO order_details VALUES (10370, 64, 26.6000004, 30, 0); +INSERT INTO order_details VALUES (10370, 74, 8, 20, 0.150000006); +INSERT INTO order_details VALUES (10371, 36, 15.1999998, 6, 0.200000003); +INSERT INTO order_details VALUES (10372, 20, 64.8000031, 12, 0.25); +INSERT INTO order_details VALUES (10372, 38, 210.800003, 40, 0.25); +INSERT INTO order_details VALUES (10372, 60, 27.2000008, 70, 0.25); +INSERT INTO order_details VALUES (10372, 72, 27.7999992, 42, 0.25); +INSERT INTO order_details VALUES (10373, 58, 10.6000004, 80, 0.200000003); +INSERT INTO order_details VALUES (10373, 71, 17.2000008, 50, 0.200000003); +INSERT INTO order_details VALUES (10374, 31, 10, 30, 0); +INSERT INTO order_details VALUES (10374, 58, 10.6000004, 15, 0); +INSERT INTO order_details VALUES (10375, 14, 18.6000004, 15, 0); +INSERT INTO order_details VALUES (10375, 54, 5.9000001, 10, 0); +INSERT INTO order_details VALUES (10376, 31, 10, 42, 0.0500000007); +INSERT INTO order_details VALUES (10377, 28, 36.4000015, 20, 0.150000006); +INSERT INTO order_details VALUES (10377, 39, 14.3999996, 20, 0.150000006); +INSERT INTO order_details VALUES (10378, 71, 17.2000008, 6, 0); +INSERT INTO order_details VALUES (10379, 41, 7.69999981, 8, 0.100000001); +INSERT INTO order_details VALUES (10379, 63, 35.0999985, 16, 0.100000001); +INSERT INTO order_details VALUES (10379, 65, 16.7999992, 20, 0.100000001); +INSERT INTO order_details VALUES (10380, 30, 20.7000008, 18, 0.100000001); +INSERT INTO order_details VALUES (10380, 53, 26.2000008, 20, 0.100000001); +INSERT INTO order_details VALUES (10380, 60, 27.2000008, 6, 0.100000001); +INSERT INTO order_details VALUES (10380, 70, 12, 30, 0); +INSERT INTO order_details VALUES (10381, 74, 8, 14, 0); +INSERT INTO order_details VALUES (10382, 5, 17, 32, 0); +INSERT INTO order_details VALUES (10382, 18, 50, 9, 0); +INSERT INTO order_details VALUES (10382, 29, 99, 14, 0); +INSERT INTO order_details VALUES (10382, 33, 2, 60, 0); +INSERT INTO order_details VALUES (10382, 74, 8, 50, 0); +INSERT INTO order_details VALUES (10383, 13, 4.80000019, 20, 0); +INSERT INTO order_details VALUES (10383, 50, 13, 15, 0); +INSERT INTO order_details VALUES (10383, 56, 30.3999996, 20, 0); +INSERT INTO order_details VALUES (10384, 20, 64.8000031, 28, 0); +INSERT INTO order_details VALUES (10384, 60, 27.2000008, 15, 0); +INSERT INTO order_details VALUES (10385, 7, 24, 10, 0.200000003); +INSERT INTO order_details VALUES (10385, 60, 27.2000008, 20, 0.200000003); +INSERT INTO order_details VALUES (10385, 68, 10, 8, 0.200000003); +INSERT INTO order_details VALUES (10386, 24, 3.5999999, 15, 0); +INSERT INTO order_details VALUES (10386, 34, 11.1999998, 10, 0); +INSERT INTO order_details VALUES (10387, 24, 3.5999999, 15, 0); +INSERT INTO order_details VALUES (10387, 28, 36.4000015, 6, 0); +INSERT INTO order_details VALUES (10387, 59, 44, 12, 0); +INSERT INTO order_details VALUES (10387, 71, 17.2000008, 15, 0); +INSERT INTO order_details VALUES (10388, 45, 7.5999999, 15, 0.200000003); +INSERT INTO order_details VALUES (10388, 52, 5.5999999, 20, 0.200000003); +INSERT INTO order_details VALUES (10388, 53, 26.2000008, 40, 0); +INSERT INTO order_details VALUES (10389, 10, 24.7999992, 16, 0); +INSERT INTO order_details VALUES (10389, 55, 19.2000008, 15, 0); +INSERT INTO order_details VALUES (10389, 62, 39.4000015, 20, 0); +INSERT INTO order_details VALUES (10389, 70, 12, 30, 0); +INSERT INTO order_details VALUES (10390, 31, 10, 60, 0.100000001); +INSERT INTO order_details VALUES (10390, 35, 14.3999996, 40, 0.100000001); +INSERT INTO order_details VALUES (10390, 46, 9.60000038, 45, 0); +INSERT INTO order_details VALUES (10390, 72, 27.7999992, 24, 0.100000001); +INSERT INTO order_details VALUES (10391, 13, 4.80000019, 18, 0); +INSERT INTO order_details VALUES (10392, 69, 28.7999992, 50, 0); +INSERT INTO order_details VALUES (10393, 2, 15.1999998, 25, 0.25); +INSERT INTO order_details VALUES (10393, 14, 18.6000004, 42, 0.25); +INSERT INTO order_details VALUES (10393, 25, 11.1999998, 7, 0.25); +INSERT INTO order_details VALUES (10393, 26, 24.8999996, 70, 0.25); +INSERT INTO order_details VALUES (10393, 31, 10, 32, 0); +INSERT INTO order_details VALUES (10394, 13, 4.80000019, 10, 0); +INSERT INTO order_details VALUES (10394, 62, 39.4000015, 10, 0); +INSERT INTO order_details VALUES (10395, 46, 9.60000038, 28, 0.100000001); +INSERT INTO order_details VALUES (10395, 53, 26.2000008, 70, 0.100000001); +INSERT INTO order_details VALUES (10395, 69, 28.7999992, 8, 0); +INSERT INTO order_details VALUES (10396, 23, 7.19999981, 40, 0); +INSERT INTO order_details VALUES (10396, 71, 17.2000008, 60, 0); +INSERT INTO order_details VALUES (10396, 72, 27.7999992, 21, 0); +INSERT INTO order_details VALUES (10397, 21, 8, 10, 0.150000006); +INSERT INTO order_details VALUES (10397, 51, 42.4000015, 18, 0.150000006); +INSERT INTO order_details VALUES (10398, 35, 14.3999996, 30, 0); +INSERT INTO order_details VALUES (10398, 55, 19.2000008, 120, 0.100000001); +INSERT INTO order_details VALUES (10399, 68, 10, 60, 0); +INSERT INTO order_details VALUES (10399, 71, 17.2000008, 30, 0); +INSERT INTO order_details VALUES (10399, 76, 14.3999996, 35, 0); +INSERT INTO order_details VALUES (10399, 77, 10.3999996, 14, 0); +INSERT INTO order_details VALUES (10400, 29, 99, 21, 0); +INSERT INTO order_details VALUES (10400, 35, 14.3999996, 35, 0); +INSERT INTO order_details VALUES (10400, 49, 16, 30, 0); +INSERT INTO order_details VALUES (10401, 30, 20.7000008, 18, 0); +INSERT INTO order_details VALUES (10401, 56, 30.3999996, 70, 0); +INSERT INTO order_details VALUES (10401, 65, 16.7999992, 20, 0); +INSERT INTO order_details VALUES (10401, 71, 17.2000008, 60, 0); +INSERT INTO order_details VALUES (10402, 23, 7.19999981, 60, 0); +INSERT INTO order_details VALUES (10402, 63, 35.0999985, 65, 0); +INSERT INTO order_details VALUES (10403, 16, 13.8999996, 21, 0.150000006); +INSERT INTO order_details VALUES (10403, 48, 10.1999998, 70, 0.150000006); +INSERT INTO order_details VALUES (10404, 26, 24.8999996, 30, 0.0500000007); +INSERT INTO order_details VALUES (10404, 42, 11.1999998, 40, 0.0500000007); +INSERT INTO order_details VALUES (10404, 49, 16, 30, 0.0500000007); +INSERT INTO order_details VALUES (10405, 3, 8, 50, 0); +INSERT INTO order_details VALUES (10406, 1, 14.3999996, 10, 0); +INSERT INTO order_details VALUES (10406, 21, 8, 30, 0.100000001); +INSERT INTO order_details VALUES (10406, 28, 36.4000015, 42, 0.100000001); +INSERT INTO order_details VALUES (10406, 36, 15.1999998, 5, 0.100000001); +INSERT INTO order_details VALUES (10406, 40, 14.6999998, 2, 0.100000001); +INSERT INTO order_details VALUES (10407, 11, 16.7999992, 30, 0); +INSERT INTO order_details VALUES (10407, 69, 28.7999992, 15, 0); +INSERT INTO order_details VALUES (10407, 71, 17.2000008, 15, 0); +INSERT INTO order_details VALUES (10408, 37, 20.7999992, 10, 0); +INSERT INTO order_details VALUES (10408, 54, 5.9000001, 6, 0); +INSERT INTO order_details VALUES (10408, 62, 39.4000015, 35, 0); +INSERT INTO order_details VALUES (10409, 14, 18.6000004, 12, 0); +INSERT INTO order_details VALUES (10409, 21, 8, 12, 0); +INSERT INTO order_details VALUES (10410, 33, 2, 49, 0); +INSERT INTO order_details VALUES (10410, 59, 44, 16, 0); +INSERT INTO order_details VALUES (10411, 41, 7.69999981, 25, 0.200000003); +INSERT INTO order_details VALUES (10411, 44, 15.5, 40, 0.200000003); +INSERT INTO order_details VALUES (10411, 59, 44, 9, 0.200000003); +INSERT INTO order_details VALUES (10412, 14, 18.6000004, 20, 0.100000001); +INSERT INTO order_details VALUES (10413, 1, 14.3999996, 24, 0); +INSERT INTO order_details VALUES (10413, 62, 39.4000015, 40, 0); +INSERT INTO order_details VALUES (10413, 76, 14.3999996, 14, 0); +INSERT INTO order_details VALUES (10414, 19, 7.30000019, 18, 0.0500000007); +INSERT INTO order_details VALUES (10414, 33, 2, 50, 0); +INSERT INTO order_details VALUES (10415, 17, 31.2000008, 2, 0); +INSERT INTO order_details VALUES (10415, 33, 2, 20, 0); +INSERT INTO order_details VALUES (10416, 19, 7.30000019, 20, 0); +INSERT INTO order_details VALUES (10416, 53, 26.2000008, 10, 0); +INSERT INTO order_details VALUES (10416, 57, 15.6000004, 20, 0); +INSERT INTO order_details VALUES (10417, 38, 210.800003, 50, 0); +INSERT INTO order_details VALUES (10417, 46, 9.60000038, 2, 0.25); +INSERT INTO order_details VALUES (10417, 68, 10, 36, 0.25); +INSERT INTO order_details VALUES (10417, 77, 10.3999996, 35, 0); +INSERT INTO order_details VALUES (10418, 2, 15.1999998, 60, 0); +INSERT INTO order_details VALUES (10418, 47, 7.5999999, 55, 0); +INSERT INTO order_details VALUES (10418, 61, 22.7999992, 16, 0); +INSERT INTO order_details VALUES (10418, 74, 8, 15, 0); +INSERT INTO order_details VALUES (10419, 60, 27.2000008, 60, 0.0500000007); +INSERT INTO order_details VALUES (10419, 69, 28.7999992, 20, 0.0500000007); +INSERT INTO order_details VALUES (10420, 9, 77.5999985, 20, 0.100000001); +INSERT INTO order_details VALUES (10420, 13, 4.80000019, 2, 0.100000001); +INSERT INTO order_details VALUES (10420, 70, 12, 8, 0.100000001); +INSERT INTO order_details VALUES (10420, 73, 12, 20, 0.100000001); +INSERT INTO order_details VALUES (10421, 19, 7.30000019, 4, 0.150000006); +INSERT INTO order_details VALUES (10421, 26, 24.8999996, 30, 0); +INSERT INTO order_details VALUES (10421, 53, 26.2000008, 15, 0.150000006); +INSERT INTO order_details VALUES (10421, 77, 10.3999996, 10, 0.150000006); +INSERT INTO order_details VALUES (10422, 26, 24.8999996, 2, 0); +INSERT INTO order_details VALUES (10423, 31, 10, 14, 0); +INSERT INTO order_details VALUES (10423, 59, 44, 20, 0); +INSERT INTO order_details VALUES (10424, 35, 14.3999996, 60, 0.200000003); +INSERT INTO order_details VALUES (10424, 38, 210.800003, 49, 0.200000003); +INSERT INTO order_details VALUES (10424, 68, 10, 30, 0.200000003); +INSERT INTO order_details VALUES (10425, 55, 19.2000008, 10, 0.25); +INSERT INTO order_details VALUES (10425, 76, 14.3999996, 20, 0.25); +INSERT INTO order_details VALUES (10426, 56, 30.3999996, 5, 0); +INSERT INTO order_details VALUES (10426, 64, 26.6000004, 7, 0); +INSERT INTO order_details VALUES (10427, 14, 18.6000004, 35, 0); +INSERT INTO order_details VALUES (10428, 46, 9.60000038, 20, 0); +INSERT INTO order_details VALUES (10429, 50, 13, 40, 0); +INSERT INTO order_details VALUES (10429, 63, 35.0999985, 35, 0.25); +INSERT INTO order_details VALUES (10430, 17, 31.2000008, 45, 0.200000003); +INSERT INTO order_details VALUES (10430, 21, 8, 50, 0); +INSERT INTO order_details VALUES (10430, 56, 30.3999996, 30, 0); +INSERT INTO order_details VALUES (10430, 59, 44, 70, 0.200000003); +INSERT INTO order_details VALUES (10431, 17, 31.2000008, 50, 0.25); +INSERT INTO order_details VALUES (10431, 40, 14.6999998, 50, 0.25); +INSERT INTO order_details VALUES (10431, 47, 7.5999999, 30, 0.25); +INSERT INTO order_details VALUES (10432, 26, 24.8999996, 10, 0); +INSERT INTO order_details VALUES (10432, 54, 5.9000001, 40, 0); +INSERT INTO order_details VALUES (10433, 56, 30.3999996, 28, 0); +INSERT INTO order_details VALUES (10434, 11, 16.7999992, 6, 0); +INSERT INTO order_details VALUES (10434, 76, 14.3999996, 18, 0.150000006); +INSERT INTO order_details VALUES (10435, 2, 15.1999998, 10, 0); +INSERT INTO order_details VALUES (10435, 22, 16.7999992, 12, 0); +INSERT INTO order_details VALUES (10435, 72, 27.7999992, 10, 0); +INSERT INTO order_details VALUES (10436, 46, 9.60000038, 5, 0); +INSERT INTO order_details VALUES (10436, 56, 30.3999996, 40, 0.100000001); +INSERT INTO order_details VALUES (10436, 64, 26.6000004, 30, 0.100000001); +INSERT INTO order_details VALUES (10436, 75, 6.19999981, 24, 0.100000001); +INSERT INTO order_details VALUES (10437, 53, 26.2000008, 15, 0); +INSERT INTO order_details VALUES (10438, 19, 7.30000019, 15, 0.200000003); +INSERT INTO order_details VALUES (10438, 34, 11.1999998, 20, 0.200000003); +INSERT INTO order_details VALUES (10438, 57, 15.6000004, 15, 0.200000003); +INSERT INTO order_details VALUES (10439, 12, 30.3999996, 15, 0); +INSERT INTO order_details VALUES (10439, 16, 13.8999996, 16, 0); +INSERT INTO order_details VALUES (10439, 64, 26.6000004, 6, 0); +INSERT INTO order_details VALUES (10439, 74, 8, 30, 0); +INSERT INTO order_details VALUES (10440, 2, 15.1999998, 45, 0.150000006); +INSERT INTO order_details VALUES (10440, 16, 13.8999996, 49, 0.150000006); +INSERT INTO order_details VALUES (10440, 29, 99, 24, 0.150000006); +INSERT INTO order_details VALUES (10440, 61, 22.7999992, 90, 0.150000006); +INSERT INTO order_details VALUES (10441, 27, 35.0999985, 50, 0); +INSERT INTO order_details VALUES (10442, 11, 16.7999992, 30, 0); +INSERT INTO order_details VALUES (10442, 54, 5.9000001, 80, 0); +INSERT INTO order_details VALUES (10442, 66, 13.6000004, 60, 0); +INSERT INTO order_details VALUES (10443, 11, 16.7999992, 6, 0.200000003); +INSERT INTO order_details VALUES (10443, 28, 36.4000015, 12, 0); +INSERT INTO order_details VALUES (10444, 17, 31.2000008, 10, 0); +INSERT INTO order_details VALUES (10444, 26, 24.8999996, 15, 0); +INSERT INTO order_details VALUES (10444, 35, 14.3999996, 8, 0); +INSERT INTO order_details VALUES (10444, 41, 7.69999981, 30, 0); +INSERT INTO order_details VALUES (10445, 39, 14.3999996, 6, 0); +INSERT INTO order_details VALUES (10445, 54, 5.9000001, 15, 0); +INSERT INTO order_details VALUES (10446, 19, 7.30000019, 12, 0.100000001); +INSERT INTO order_details VALUES (10446, 24, 3.5999999, 20, 0.100000001); +INSERT INTO order_details VALUES (10446, 31, 10, 3, 0.100000001); +INSERT INTO order_details VALUES (10446, 52, 5.5999999, 15, 0.100000001); +INSERT INTO order_details VALUES (10447, 19, 7.30000019, 40, 0); +INSERT INTO order_details VALUES (10447, 65, 16.7999992, 35, 0); +INSERT INTO order_details VALUES (10447, 71, 17.2000008, 2, 0); +INSERT INTO order_details VALUES (10448, 26, 24.8999996, 6, 0); +INSERT INTO order_details VALUES (10448, 40, 14.6999998, 20, 0); +INSERT INTO order_details VALUES (10449, 10, 24.7999992, 14, 0); +INSERT INTO order_details VALUES (10449, 52, 5.5999999, 20, 0); +INSERT INTO order_details VALUES (10449, 62, 39.4000015, 35, 0); +INSERT INTO order_details VALUES (10450, 10, 24.7999992, 20, 0.200000003); +INSERT INTO order_details VALUES (10450, 54, 5.9000001, 6, 0.200000003); +INSERT INTO order_details VALUES (10451, 55, 19.2000008, 120, 0.100000001); +INSERT INTO order_details VALUES (10451, 64, 26.6000004, 35, 0.100000001); +INSERT INTO order_details VALUES (10451, 65, 16.7999992, 28, 0.100000001); +INSERT INTO order_details VALUES (10451, 77, 10.3999996, 55, 0.100000001); +INSERT INTO order_details VALUES (10452, 28, 36.4000015, 15, 0); +INSERT INTO order_details VALUES (10452, 44, 15.5, 100, 0.0500000007); +INSERT INTO order_details VALUES (10453, 48, 10.1999998, 15, 0.100000001); +INSERT INTO order_details VALUES (10453, 70, 12, 25, 0.100000001); +INSERT INTO order_details VALUES (10454, 16, 13.8999996, 20, 0.200000003); +INSERT INTO order_details VALUES (10454, 33, 2, 20, 0.200000003); +INSERT INTO order_details VALUES (10454, 46, 9.60000038, 10, 0.200000003); +INSERT INTO order_details VALUES (10455, 39, 14.3999996, 20, 0); +INSERT INTO order_details VALUES (10455, 53, 26.2000008, 50, 0); +INSERT INTO order_details VALUES (10455, 61, 22.7999992, 25, 0); +INSERT INTO order_details VALUES (10455, 71, 17.2000008, 30, 0); +INSERT INTO order_details VALUES (10456, 21, 8, 40, 0.150000006); +INSERT INTO order_details VALUES (10456, 49, 16, 21, 0.150000006); +INSERT INTO order_details VALUES (10457, 59, 44, 36, 0); +INSERT INTO order_details VALUES (10458, 26, 24.8999996, 30, 0); +INSERT INTO order_details VALUES (10458, 28, 36.4000015, 30, 0); +INSERT INTO order_details VALUES (10458, 43, 36.7999992, 20, 0); +INSERT INTO order_details VALUES (10458, 56, 30.3999996, 15, 0); +INSERT INTO order_details VALUES (10458, 71, 17.2000008, 50, 0); +INSERT INTO order_details VALUES (10459, 7, 24, 16, 0.0500000007); +INSERT INTO order_details VALUES (10459, 46, 9.60000038, 20, 0.0500000007); +INSERT INTO order_details VALUES (10459, 72, 27.7999992, 40, 0); +INSERT INTO order_details VALUES (10460, 68, 10, 21, 0.25); +INSERT INTO order_details VALUES (10460, 75, 6.19999981, 4, 0.25); +INSERT INTO order_details VALUES (10461, 21, 8, 40, 0.25); +INSERT INTO order_details VALUES (10461, 30, 20.7000008, 28, 0.25); +INSERT INTO order_details VALUES (10461, 55, 19.2000008, 60, 0.25); +INSERT INTO order_details VALUES (10462, 13, 4.80000019, 1, 0); +INSERT INTO order_details VALUES (10462, 23, 7.19999981, 21, 0); +INSERT INTO order_details VALUES (10463, 19, 7.30000019, 21, 0); +INSERT INTO order_details VALUES (10463, 42, 11.1999998, 50, 0); +INSERT INTO order_details VALUES (10464, 4, 17.6000004, 16, 0.200000003); +INSERT INTO order_details VALUES (10464, 43, 36.7999992, 3, 0); +INSERT INTO order_details VALUES (10464, 56, 30.3999996, 30, 0.200000003); +INSERT INTO order_details VALUES (10464, 60, 27.2000008, 20, 0); +INSERT INTO order_details VALUES (10465, 24, 3.5999999, 25, 0); +INSERT INTO order_details VALUES (10465, 29, 99, 18, 0.100000001); +INSERT INTO order_details VALUES (10465, 40, 14.6999998, 20, 0); +INSERT INTO order_details VALUES (10465, 45, 7.5999999, 30, 0.100000001); +INSERT INTO order_details VALUES (10465, 50, 13, 25, 0); +INSERT INTO order_details VALUES (10466, 11, 16.7999992, 10, 0); +INSERT INTO order_details VALUES (10466, 46, 9.60000038, 5, 0); +INSERT INTO order_details VALUES (10467, 24, 3.5999999, 28, 0); +INSERT INTO order_details VALUES (10467, 25, 11.1999998, 12, 0); +INSERT INTO order_details VALUES (10468, 30, 20.7000008, 8, 0); +INSERT INTO order_details VALUES (10468, 43, 36.7999992, 15, 0); +INSERT INTO order_details VALUES (10469, 2, 15.1999998, 40, 0.150000006); +INSERT INTO order_details VALUES (10469, 16, 13.8999996, 35, 0.150000006); +INSERT INTO order_details VALUES (10469, 44, 15.5, 2, 0.150000006); +INSERT INTO order_details VALUES (10470, 18, 50, 30, 0); +INSERT INTO order_details VALUES (10470, 23, 7.19999981, 15, 0); +INSERT INTO order_details VALUES (10470, 64, 26.6000004, 8, 0); +INSERT INTO order_details VALUES (10471, 7, 24, 30, 0); +INSERT INTO order_details VALUES (10471, 56, 30.3999996, 20, 0); +INSERT INTO order_details VALUES (10472, 24, 3.5999999, 80, 0.0500000007); +INSERT INTO order_details VALUES (10472, 51, 42.4000015, 18, 0); +INSERT INTO order_details VALUES (10473, 33, 2, 12, 0); +INSERT INTO order_details VALUES (10473, 71, 17.2000008, 12, 0); +INSERT INTO order_details VALUES (10474, 14, 18.6000004, 12, 0); +INSERT INTO order_details VALUES (10474, 28, 36.4000015, 18, 0); +INSERT INTO order_details VALUES (10474, 40, 14.6999998, 21, 0); +INSERT INTO order_details VALUES (10474, 75, 6.19999981, 10, 0); +INSERT INTO order_details VALUES (10475, 31, 10, 35, 0.150000006); +INSERT INTO order_details VALUES (10475, 66, 13.6000004, 60, 0.150000006); +INSERT INTO order_details VALUES (10475, 76, 14.3999996, 42, 0.150000006); +INSERT INTO order_details VALUES (10476, 55, 19.2000008, 2, 0.0500000007); +INSERT INTO order_details VALUES (10476, 70, 12, 12, 0); +INSERT INTO order_details VALUES (10477, 1, 14.3999996, 15, 0); +INSERT INTO order_details VALUES (10477, 21, 8, 21, 0.25); +INSERT INTO order_details VALUES (10477, 39, 14.3999996, 20, 0.25); +INSERT INTO order_details VALUES (10478, 10, 24.7999992, 20, 0.0500000007); +INSERT INTO order_details VALUES (10479, 38, 210.800003, 30, 0); +INSERT INTO order_details VALUES (10479, 53, 26.2000008, 28, 0); +INSERT INTO order_details VALUES (10479, 59, 44, 60, 0); +INSERT INTO order_details VALUES (10479, 64, 26.6000004, 30, 0); +INSERT INTO order_details VALUES (10480, 47, 7.5999999, 30, 0); +INSERT INTO order_details VALUES (10480, 59, 44, 12, 0); +INSERT INTO order_details VALUES (10481, 49, 16, 24, 0); +INSERT INTO order_details VALUES (10481, 60, 27.2000008, 40, 0); +INSERT INTO order_details VALUES (10482, 40, 14.6999998, 10, 0); +INSERT INTO order_details VALUES (10483, 34, 11.1999998, 35, 0.0500000007); +INSERT INTO order_details VALUES (10483, 77, 10.3999996, 30, 0.0500000007); +INSERT INTO order_details VALUES (10484, 21, 8, 14, 0); +INSERT INTO order_details VALUES (10484, 40, 14.6999998, 10, 0); +INSERT INTO order_details VALUES (10484, 51, 42.4000015, 3, 0); +INSERT INTO order_details VALUES (10485, 2, 15.1999998, 20, 0.100000001); +INSERT INTO order_details VALUES (10485, 3, 8, 20, 0.100000001); +INSERT INTO order_details VALUES (10485, 55, 19.2000008, 30, 0.100000001); +INSERT INTO order_details VALUES (10485, 70, 12, 60, 0.100000001); +INSERT INTO order_details VALUES (10486, 11, 16.7999992, 5, 0); +INSERT INTO order_details VALUES (10486, 51, 42.4000015, 25, 0); +INSERT INTO order_details VALUES (10486, 74, 8, 16, 0); +INSERT INTO order_details VALUES (10487, 19, 7.30000019, 5, 0); +INSERT INTO order_details VALUES (10487, 26, 24.8999996, 30, 0); +INSERT INTO order_details VALUES (10487, 54, 5.9000001, 24, 0.25); +INSERT INTO order_details VALUES (10488, 59, 44, 30, 0); +INSERT INTO order_details VALUES (10488, 73, 12, 20, 0.200000003); +INSERT INTO order_details VALUES (10489, 11, 16.7999992, 15, 0.25); +INSERT INTO order_details VALUES (10489, 16, 13.8999996, 18, 0); +INSERT INTO order_details VALUES (10490, 59, 44, 60, 0); +INSERT INTO order_details VALUES (10490, 68, 10, 30, 0); +INSERT INTO order_details VALUES (10490, 75, 6.19999981, 36, 0); +INSERT INTO order_details VALUES (10491, 44, 15.5, 15, 0.150000006); +INSERT INTO order_details VALUES (10491, 77, 10.3999996, 7, 0.150000006); +INSERT INTO order_details VALUES (10492, 25, 11.1999998, 60, 0.0500000007); +INSERT INTO order_details VALUES (10492, 42, 11.1999998, 20, 0.0500000007); +INSERT INTO order_details VALUES (10493, 65, 16.7999992, 15, 0.100000001); +INSERT INTO order_details VALUES (10493, 66, 13.6000004, 10, 0.100000001); +INSERT INTO order_details VALUES (10493, 69, 28.7999992, 10, 0.100000001); +INSERT INTO order_details VALUES (10494, 56, 30.3999996, 30, 0); +INSERT INTO order_details VALUES (10495, 23, 7.19999981, 10, 0); +INSERT INTO order_details VALUES (10495, 41, 7.69999981, 20, 0); +INSERT INTO order_details VALUES (10495, 77, 10.3999996, 5, 0); +INSERT INTO order_details VALUES (10496, 31, 10, 20, 0.0500000007); +INSERT INTO order_details VALUES (10497, 56, 30.3999996, 14, 0); +INSERT INTO order_details VALUES (10497, 72, 27.7999992, 25, 0); +INSERT INTO order_details VALUES (10497, 77, 10.3999996, 25, 0); +INSERT INTO order_details VALUES (10498, 24, 4.5, 14, 0); +INSERT INTO order_details VALUES (10498, 40, 18.3999996, 5, 0); +INSERT INTO order_details VALUES (10498, 42, 14, 30, 0); +INSERT INTO order_details VALUES (10499, 28, 45.5999985, 20, 0); +INSERT INTO order_details VALUES (10499, 49, 20, 25, 0); +INSERT INTO order_details VALUES (10500, 15, 15.5, 12, 0.0500000007); +INSERT INTO order_details VALUES (10500, 28, 45.5999985, 8, 0.0500000007); +INSERT INTO order_details VALUES (10501, 54, 7.44999981, 20, 0); +INSERT INTO order_details VALUES (10502, 45, 9.5, 21, 0); +INSERT INTO order_details VALUES (10502, 53, 32.7999992, 6, 0); +INSERT INTO order_details VALUES (10502, 67, 14, 30, 0); +INSERT INTO order_details VALUES (10503, 14, 23.25, 70, 0); +INSERT INTO order_details VALUES (10503, 65, 21.0499992, 20, 0); +INSERT INTO order_details VALUES (10504, 2, 19, 12, 0); +INSERT INTO order_details VALUES (10504, 21, 10, 12, 0); +INSERT INTO order_details VALUES (10504, 53, 32.7999992, 10, 0); +INSERT INTO order_details VALUES (10504, 61, 28.5, 25, 0); +INSERT INTO order_details VALUES (10505, 62, 49.2999992, 3, 0); +INSERT INTO order_details VALUES (10506, 25, 14, 18, 0.100000001); +INSERT INTO order_details VALUES (10506, 70, 15, 14, 0.100000001); +INSERT INTO order_details VALUES (10507, 43, 46, 15, 0.150000006); +INSERT INTO order_details VALUES (10507, 48, 12.75, 15, 0.150000006); +INSERT INTO order_details VALUES (10508, 13, 6, 10, 0); +INSERT INTO order_details VALUES (10508, 39, 18, 10, 0); +INSERT INTO order_details VALUES (10509, 28, 45.5999985, 3, 0); +INSERT INTO order_details VALUES (10510, 29, 123.790001, 36, 0); +INSERT INTO order_details VALUES (10510, 75, 7.75, 36, 0.100000001); +INSERT INTO order_details VALUES (10511, 4, 22, 50, 0.150000006); +INSERT INTO order_details VALUES (10511, 7, 30, 50, 0.150000006); +INSERT INTO order_details VALUES (10511, 8, 40, 10, 0.150000006); +INSERT INTO order_details VALUES (10512, 24, 4.5, 10, 0.150000006); +INSERT INTO order_details VALUES (10512, 46, 12, 9, 0.150000006); +INSERT INTO order_details VALUES (10512, 47, 9.5, 6, 0.150000006); +INSERT INTO order_details VALUES (10512, 60, 34, 12, 0.150000006); +INSERT INTO order_details VALUES (10513, 21, 10, 40, 0.200000003); +INSERT INTO order_details VALUES (10513, 32, 32, 50, 0.200000003); +INSERT INTO order_details VALUES (10513, 61, 28.5, 15, 0.200000003); +INSERT INTO order_details VALUES (10514, 20, 81, 39, 0); +INSERT INTO order_details VALUES (10514, 28, 45.5999985, 35, 0); +INSERT INTO order_details VALUES (10514, 56, 38, 70, 0); +INSERT INTO order_details VALUES (10514, 65, 21.0499992, 39, 0); +INSERT INTO order_details VALUES (10514, 75, 7.75, 50, 0); +INSERT INTO order_details VALUES (10515, 9, 97, 16, 0.150000006); +INSERT INTO order_details VALUES (10515, 16, 17.4500008, 50, 0); +INSERT INTO order_details VALUES (10515, 27, 43.9000015, 120, 0); +INSERT INTO order_details VALUES (10515, 33, 2.5, 16, 0.150000006); +INSERT INTO order_details VALUES (10515, 60, 34, 84, 0.150000006); +INSERT INTO order_details VALUES (10516, 18, 62.5, 25, 0.100000001); +INSERT INTO order_details VALUES (10516, 41, 9.64999962, 80, 0.100000001); +INSERT INTO order_details VALUES (10516, 42, 14, 20, 0); +INSERT INTO order_details VALUES (10517, 52, 7, 6, 0); +INSERT INTO order_details VALUES (10517, 59, 55, 4, 0); +INSERT INTO order_details VALUES (10517, 70, 15, 6, 0); +INSERT INTO order_details VALUES (10518, 24, 4.5, 5, 0); +INSERT INTO order_details VALUES (10518, 38, 263.5, 15, 0); +INSERT INTO order_details VALUES (10518, 44, 19.4500008, 9, 0); +INSERT INTO order_details VALUES (10519, 10, 31, 16, 0.0500000007); +INSERT INTO order_details VALUES (10519, 56, 38, 40, 0); +INSERT INTO order_details VALUES (10519, 60, 34, 10, 0.0500000007); +INSERT INTO order_details VALUES (10520, 24, 4.5, 8, 0); +INSERT INTO order_details VALUES (10520, 53, 32.7999992, 5, 0); +INSERT INTO order_details VALUES (10521, 35, 18, 3, 0); +INSERT INTO order_details VALUES (10521, 41, 9.64999962, 10, 0); +INSERT INTO order_details VALUES (10521, 68, 12.5, 6, 0); +INSERT INTO order_details VALUES (10522, 1, 18, 40, 0.200000003); +INSERT INTO order_details VALUES (10522, 8, 40, 24, 0); +INSERT INTO order_details VALUES (10522, 30, 25.8899994, 20, 0.200000003); +INSERT INTO order_details VALUES (10522, 40, 18.3999996, 25, 0.200000003); +INSERT INTO order_details VALUES (10523, 17, 39, 25, 0.100000001); +INSERT INTO order_details VALUES (10523, 20, 81, 15, 0.100000001); +INSERT INTO order_details VALUES (10523, 37, 26, 18, 0.100000001); +INSERT INTO order_details VALUES (10523, 41, 9.64999962, 6, 0.100000001); +INSERT INTO order_details VALUES (10524, 10, 31, 2, 0); +INSERT INTO order_details VALUES (10524, 30, 25.8899994, 10, 0); +INSERT INTO order_details VALUES (10524, 43, 46, 60, 0); +INSERT INTO order_details VALUES (10524, 54, 7.44999981, 15, 0); +INSERT INTO order_details VALUES (10525, 36, 19, 30, 0); +INSERT INTO order_details VALUES (10525, 40, 18.3999996, 15, 0.100000001); +INSERT INTO order_details VALUES (10526, 1, 18, 8, 0.150000006); +INSERT INTO order_details VALUES (10526, 13, 6, 10, 0); +INSERT INTO order_details VALUES (10526, 56, 38, 30, 0.150000006); +INSERT INTO order_details VALUES (10527, 4, 22, 50, 0.100000001); +INSERT INTO order_details VALUES (10527, 36, 19, 30, 0.100000001); +INSERT INTO order_details VALUES (10528, 11, 21, 3, 0); +INSERT INTO order_details VALUES (10528, 33, 2.5, 8, 0.200000003); +INSERT INTO order_details VALUES (10528, 72, 34.7999992, 9, 0); +INSERT INTO order_details VALUES (10529, 55, 24, 14, 0); +INSERT INTO order_details VALUES (10529, 68, 12.5, 20, 0); +INSERT INTO order_details VALUES (10529, 69, 36, 10, 0); +INSERT INTO order_details VALUES (10530, 17, 39, 40, 0); +INSERT INTO order_details VALUES (10530, 43, 46, 25, 0); +INSERT INTO order_details VALUES (10530, 61, 28.5, 20, 0); +INSERT INTO order_details VALUES (10530, 76, 18, 50, 0); +INSERT INTO order_details VALUES (10531, 59, 55, 2, 0); +INSERT INTO order_details VALUES (10532, 30, 25.8899994, 15, 0); +INSERT INTO order_details VALUES (10532, 66, 17, 24, 0); +INSERT INTO order_details VALUES (10533, 4, 22, 50, 0.0500000007); +INSERT INTO order_details VALUES (10533, 72, 34.7999992, 24, 0); +INSERT INTO order_details VALUES (10533, 73, 15, 24, 0.0500000007); +INSERT INTO order_details VALUES (10534, 30, 25.8899994, 10, 0); +INSERT INTO order_details VALUES (10534, 40, 18.3999996, 10, 0.200000003); +INSERT INTO order_details VALUES (10534, 54, 7.44999981, 10, 0.200000003); +INSERT INTO order_details VALUES (10535, 11, 21, 50, 0.100000001); +INSERT INTO order_details VALUES (10535, 40, 18.3999996, 10, 0.100000001); +INSERT INTO order_details VALUES (10535, 57, 19.5, 5, 0.100000001); +INSERT INTO order_details VALUES (10535, 59, 55, 15, 0.100000001); +INSERT INTO order_details VALUES (10536, 12, 38, 15, 0.25); +INSERT INTO order_details VALUES (10536, 31, 12.5, 20, 0); +INSERT INTO order_details VALUES (10536, 33, 2.5, 30, 0); +INSERT INTO order_details VALUES (10536, 60, 34, 35, 0.25); +INSERT INTO order_details VALUES (10537, 31, 12.5, 30, 0); +INSERT INTO order_details VALUES (10537, 51, 53, 6, 0); +INSERT INTO order_details VALUES (10537, 58, 13.25, 20, 0); +INSERT INTO order_details VALUES (10537, 72, 34.7999992, 21, 0); +INSERT INTO order_details VALUES (10537, 73, 15, 9, 0); +INSERT INTO order_details VALUES (10538, 70, 15, 7, 0); +INSERT INTO order_details VALUES (10538, 72, 34.7999992, 1, 0); +INSERT INTO order_details VALUES (10539, 13, 6, 8, 0); +INSERT INTO order_details VALUES (10539, 21, 10, 15, 0); +INSERT INTO order_details VALUES (10539, 33, 2.5, 15, 0); +INSERT INTO order_details VALUES (10539, 49, 20, 6, 0); +INSERT INTO order_details VALUES (10540, 3, 10, 60, 0); +INSERT INTO order_details VALUES (10540, 26, 31.2299995, 40, 0); +INSERT INTO order_details VALUES (10540, 38, 263.5, 30, 0); +INSERT INTO order_details VALUES (10540, 68, 12.5, 35, 0); +INSERT INTO order_details VALUES (10541, 24, 4.5, 35, 0.100000001); +INSERT INTO order_details VALUES (10541, 38, 263.5, 4, 0.100000001); +INSERT INTO order_details VALUES (10541, 65, 21.0499992, 36, 0.100000001); +INSERT INTO order_details VALUES (10541, 71, 21.5, 9, 0.100000001); +INSERT INTO order_details VALUES (10542, 11, 21, 15, 0.0500000007); +INSERT INTO order_details VALUES (10542, 54, 7.44999981, 24, 0.0500000007); +INSERT INTO order_details VALUES (10543, 12, 38, 30, 0.150000006); +INSERT INTO order_details VALUES (10543, 23, 9, 70, 0.150000006); +INSERT INTO order_details VALUES (10544, 28, 45.5999985, 7, 0); +INSERT INTO order_details VALUES (10544, 67, 14, 7, 0); +INSERT INTO order_details VALUES (10545, 11, 21, 10, 0); +INSERT INTO order_details VALUES (10546, 7, 30, 10, 0); +INSERT INTO order_details VALUES (10546, 35, 18, 30, 0); +INSERT INTO order_details VALUES (10546, 62, 49.2999992, 40, 0); +INSERT INTO order_details VALUES (10547, 32, 32, 24, 0.150000006); +INSERT INTO order_details VALUES (10547, 36, 19, 60, 0); +INSERT INTO order_details VALUES (10548, 34, 14, 10, 0.25); +INSERT INTO order_details VALUES (10548, 41, 9.64999962, 14, 0); +INSERT INTO order_details VALUES (10549, 31, 12.5, 55, 0.150000006); +INSERT INTO order_details VALUES (10549, 45, 9.5, 100, 0.150000006); +INSERT INTO order_details VALUES (10549, 51, 53, 48, 0.150000006); +INSERT INTO order_details VALUES (10550, 17, 39, 8, 0.100000001); +INSERT INTO order_details VALUES (10550, 19, 9.19999981, 10, 0); +INSERT INTO order_details VALUES (10550, 21, 10, 6, 0.100000001); +INSERT INTO order_details VALUES (10550, 61, 28.5, 10, 0.100000001); +INSERT INTO order_details VALUES (10551, 16, 17.4500008, 40, 0.150000006); +INSERT INTO order_details VALUES (10551, 35, 18, 20, 0.150000006); +INSERT INTO order_details VALUES (10551, 44, 19.4500008, 40, 0); +INSERT INTO order_details VALUES (10552, 69, 36, 18, 0); +INSERT INTO order_details VALUES (10552, 75, 7.75, 30, 0); +INSERT INTO order_details VALUES (10553, 11, 21, 15, 0); +INSERT INTO order_details VALUES (10553, 16, 17.4500008, 14, 0); +INSERT INTO order_details VALUES (10553, 22, 21, 24, 0); +INSERT INTO order_details VALUES (10553, 31, 12.5, 30, 0); +INSERT INTO order_details VALUES (10553, 35, 18, 6, 0); +INSERT INTO order_details VALUES (10554, 16, 17.4500008, 30, 0.0500000007); +INSERT INTO order_details VALUES (10554, 23, 9, 20, 0.0500000007); +INSERT INTO order_details VALUES (10554, 62, 49.2999992, 20, 0.0500000007); +INSERT INTO order_details VALUES (10554, 77, 13, 10, 0.0500000007); +INSERT INTO order_details VALUES (10555, 14, 23.25, 30, 0.200000003); +INSERT INTO order_details VALUES (10555, 19, 9.19999981, 35, 0.200000003); +INSERT INTO order_details VALUES (10555, 24, 4.5, 18, 0.200000003); +INSERT INTO order_details VALUES (10555, 51, 53, 20, 0.200000003); +INSERT INTO order_details VALUES (10555, 56, 38, 40, 0.200000003); +INSERT INTO order_details VALUES (10556, 72, 34.7999992, 24, 0); +INSERT INTO order_details VALUES (10557, 64, 33.25, 30, 0); +INSERT INTO order_details VALUES (10557, 75, 7.75, 20, 0); +INSERT INTO order_details VALUES (10558, 47, 9.5, 25, 0); +INSERT INTO order_details VALUES (10558, 51, 53, 20, 0); +INSERT INTO order_details VALUES (10558, 52, 7, 30, 0); +INSERT INTO order_details VALUES (10558, 53, 32.7999992, 18, 0); +INSERT INTO order_details VALUES (10558, 73, 15, 3, 0); +INSERT INTO order_details VALUES (10559, 41, 9.64999962, 12, 0.0500000007); +INSERT INTO order_details VALUES (10559, 55, 24, 18, 0.0500000007); +INSERT INTO order_details VALUES (10560, 30, 25.8899994, 20, 0); +INSERT INTO order_details VALUES (10560, 62, 49.2999992, 15, 0.25); +INSERT INTO order_details VALUES (10561, 44, 19.4500008, 10, 0); +INSERT INTO order_details VALUES (10561, 51, 53, 50, 0); +INSERT INTO order_details VALUES (10562, 33, 2.5, 20, 0.100000001); +INSERT INTO order_details VALUES (10562, 62, 49.2999992, 10, 0.100000001); +INSERT INTO order_details VALUES (10563, 36, 19, 25, 0); +INSERT INTO order_details VALUES (10563, 52, 7, 70, 0); +INSERT INTO order_details VALUES (10564, 17, 39, 16, 0.0500000007); +INSERT INTO order_details VALUES (10564, 31, 12.5, 6, 0.0500000007); +INSERT INTO order_details VALUES (10564, 55, 24, 25, 0.0500000007); +INSERT INTO order_details VALUES (10565, 24, 4.5, 25, 0.100000001); +INSERT INTO order_details VALUES (10565, 64, 33.25, 18, 0.100000001); +INSERT INTO order_details VALUES (10566, 11, 21, 35, 0.150000006); +INSERT INTO order_details VALUES (10566, 18, 62.5, 18, 0.150000006); +INSERT INTO order_details VALUES (10566, 76, 18, 10, 0); +INSERT INTO order_details VALUES (10567, 31, 12.5, 60, 0.200000003); +INSERT INTO order_details VALUES (10567, 51, 53, 3, 0); +INSERT INTO order_details VALUES (10567, 59, 55, 40, 0.200000003); +INSERT INTO order_details VALUES (10568, 10, 31, 5, 0); +INSERT INTO order_details VALUES (10569, 31, 12.5, 35, 0.200000003); +INSERT INTO order_details VALUES (10569, 76, 18, 30, 0); +INSERT INTO order_details VALUES (10570, 11, 21, 15, 0.0500000007); +INSERT INTO order_details VALUES (10570, 56, 38, 60, 0.0500000007); +INSERT INTO order_details VALUES (10571, 14, 23.25, 11, 0.150000006); +INSERT INTO order_details VALUES (10571, 42, 14, 28, 0.150000006); +INSERT INTO order_details VALUES (10572, 16, 17.4500008, 12, 0.100000001); +INSERT INTO order_details VALUES (10572, 32, 32, 10, 0.100000001); +INSERT INTO order_details VALUES (10572, 40, 18.3999996, 50, 0); +INSERT INTO order_details VALUES (10572, 75, 7.75, 15, 0.100000001); +INSERT INTO order_details VALUES (10573, 17, 39, 18, 0); +INSERT INTO order_details VALUES (10573, 34, 14, 40, 0); +INSERT INTO order_details VALUES (10573, 53, 32.7999992, 25, 0); +INSERT INTO order_details VALUES (10574, 33, 2.5, 14, 0); +INSERT INTO order_details VALUES (10574, 40, 18.3999996, 2, 0); +INSERT INTO order_details VALUES (10574, 62, 49.2999992, 10, 0); +INSERT INTO order_details VALUES (10574, 64, 33.25, 6, 0); +INSERT INTO order_details VALUES (10575, 59, 55, 12, 0); +INSERT INTO order_details VALUES (10575, 63, 43.9000015, 6, 0); +INSERT INTO order_details VALUES (10575, 72, 34.7999992, 30, 0); +INSERT INTO order_details VALUES (10575, 76, 18, 10, 0); +INSERT INTO order_details VALUES (10576, 1, 18, 10, 0); +INSERT INTO order_details VALUES (10576, 31, 12.5, 20, 0); +INSERT INTO order_details VALUES (10576, 44, 19.4500008, 21, 0); +INSERT INTO order_details VALUES (10577, 39, 18, 10, 0); +INSERT INTO order_details VALUES (10577, 75, 7.75, 20, 0); +INSERT INTO order_details VALUES (10577, 77, 13, 18, 0); +INSERT INTO order_details VALUES (10578, 35, 18, 20, 0); +INSERT INTO order_details VALUES (10578, 57, 19.5, 6, 0); +INSERT INTO order_details VALUES (10579, 15, 15.5, 10, 0); +INSERT INTO order_details VALUES (10579, 75, 7.75, 21, 0); +INSERT INTO order_details VALUES (10580, 14, 23.25, 15, 0.0500000007); +INSERT INTO order_details VALUES (10580, 41, 9.64999962, 9, 0.0500000007); +INSERT INTO order_details VALUES (10580, 65, 21.0499992, 30, 0.0500000007); +INSERT INTO order_details VALUES (10581, 75, 7.75, 50, 0.200000003); +INSERT INTO order_details VALUES (10582, 57, 19.5, 4, 0); +INSERT INTO order_details VALUES (10582, 76, 18, 14, 0); +INSERT INTO order_details VALUES (10583, 29, 123.790001, 10, 0); +INSERT INTO order_details VALUES (10583, 60, 34, 24, 0.150000006); +INSERT INTO order_details VALUES (10583, 69, 36, 10, 0.150000006); +INSERT INTO order_details VALUES (10584, 31, 12.5, 50, 0.0500000007); +INSERT INTO order_details VALUES (10585, 47, 9.5, 15, 0); +INSERT INTO order_details VALUES (10586, 52, 7, 4, 0.150000006); +INSERT INTO order_details VALUES (10587, 26, 31.2299995, 6, 0); +INSERT INTO order_details VALUES (10587, 35, 18, 20, 0); +INSERT INTO order_details VALUES (10587, 77, 13, 20, 0); +INSERT INTO order_details VALUES (10588, 18, 62.5, 40, 0.200000003); +INSERT INTO order_details VALUES (10588, 42, 14, 100, 0.200000003); +INSERT INTO order_details VALUES (10589, 35, 18, 4, 0); +INSERT INTO order_details VALUES (10590, 1, 18, 20, 0); +INSERT INTO order_details VALUES (10590, 77, 13, 60, 0.0500000007); +INSERT INTO order_details VALUES (10591, 3, 10, 14, 0); +INSERT INTO order_details VALUES (10591, 7, 30, 10, 0); +INSERT INTO order_details VALUES (10591, 54, 7.44999981, 50, 0); +INSERT INTO order_details VALUES (10592, 15, 15.5, 25, 0.0500000007); +INSERT INTO order_details VALUES (10592, 26, 31.2299995, 5, 0.0500000007); +INSERT INTO order_details VALUES (10593, 20, 81, 21, 0.200000003); +INSERT INTO order_details VALUES (10593, 69, 36, 20, 0.200000003); +INSERT INTO order_details VALUES (10593, 76, 18, 4, 0.200000003); +INSERT INTO order_details VALUES (10594, 52, 7, 24, 0); +INSERT INTO order_details VALUES (10594, 58, 13.25, 30, 0); +INSERT INTO order_details VALUES (10595, 35, 18, 30, 0.25); +INSERT INTO order_details VALUES (10595, 61, 28.5, 120, 0.25); +INSERT INTO order_details VALUES (10595, 69, 36, 65, 0.25); +INSERT INTO order_details VALUES (10596, 56, 38, 5, 0.200000003); +INSERT INTO order_details VALUES (10596, 63, 43.9000015, 24, 0.200000003); +INSERT INTO order_details VALUES (10596, 75, 7.75, 30, 0.200000003); +INSERT INTO order_details VALUES (10597, 24, 4.5, 35, 0.200000003); +INSERT INTO order_details VALUES (10597, 57, 19.5, 20, 0); +INSERT INTO order_details VALUES (10597, 65, 21.0499992, 12, 0.200000003); +INSERT INTO order_details VALUES (10598, 27, 43.9000015, 50, 0); +INSERT INTO order_details VALUES (10598, 71, 21.5, 9, 0); +INSERT INTO order_details VALUES (10599, 62, 49.2999992, 10, 0); +INSERT INTO order_details VALUES (10600, 54, 7.44999981, 4, 0); +INSERT INTO order_details VALUES (10600, 73, 15, 30, 0); +INSERT INTO order_details VALUES (10601, 13, 6, 60, 0); +INSERT INTO order_details VALUES (10601, 59, 55, 35, 0); +INSERT INTO order_details VALUES (10602, 77, 13, 5, 0.25); +INSERT INTO order_details VALUES (10603, 22, 21, 48, 0); +INSERT INTO order_details VALUES (10603, 49, 20, 25, 0.0500000007); +INSERT INTO order_details VALUES (10604, 48, 12.75, 6, 0.100000001); +INSERT INTO order_details VALUES (10604, 76, 18, 10, 0.100000001); +INSERT INTO order_details VALUES (10605, 16, 17.4500008, 30, 0.0500000007); +INSERT INTO order_details VALUES (10605, 59, 55, 20, 0.0500000007); +INSERT INTO order_details VALUES (10605, 60, 34, 70, 0.0500000007); +INSERT INTO order_details VALUES (10605, 71, 21.5, 15, 0.0500000007); +INSERT INTO order_details VALUES (10606, 4, 22, 20, 0.200000003); +INSERT INTO order_details VALUES (10606, 55, 24, 20, 0.200000003); +INSERT INTO order_details VALUES (10606, 62, 49.2999992, 10, 0.200000003); +INSERT INTO order_details VALUES (10607, 7, 30, 45, 0); +INSERT INTO order_details VALUES (10607, 17, 39, 100, 0); +INSERT INTO order_details VALUES (10607, 33, 2.5, 14, 0); +INSERT INTO order_details VALUES (10607, 40, 18.3999996, 42, 0); +INSERT INTO order_details VALUES (10607, 72, 34.7999992, 12, 0); +INSERT INTO order_details VALUES (10608, 56, 38, 28, 0); +INSERT INTO order_details VALUES (10609, 1, 18, 3, 0); +INSERT INTO order_details VALUES (10609, 10, 31, 10, 0); +INSERT INTO order_details VALUES (10609, 21, 10, 6, 0); +INSERT INTO order_details VALUES (10610, 36, 19, 21, 0.25); +INSERT INTO order_details VALUES (10611, 1, 18, 6, 0); +INSERT INTO order_details VALUES (10611, 2, 19, 10, 0); +INSERT INTO order_details VALUES (10611, 60, 34, 15, 0); +INSERT INTO order_details VALUES (10612, 10, 31, 70, 0); +INSERT INTO order_details VALUES (10612, 36, 19, 55, 0); +INSERT INTO order_details VALUES (10612, 49, 20, 18, 0); +INSERT INTO order_details VALUES (10612, 60, 34, 40, 0); +INSERT INTO order_details VALUES (10612, 76, 18, 80, 0); +INSERT INTO order_details VALUES (10613, 13, 6, 8, 0.100000001); +INSERT INTO order_details VALUES (10613, 75, 7.75, 40, 0); +INSERT INTO order_details VALUES (10614, 11, 21, 14, 0); +INSERT INTO order_details VALUES (10614, 21, 10, 8, 0); +INSERT INTO order_details VALUES (10614, 39, 18, 5, 0); +INSERT INTO order_details VALUES (10615, 55, 24, 5, 0); +INSERT INTO order_details VALUES (10616, 38, 263.5, 15, 0.0500000007); +INSERT INTO order_details VALUES (10616, 56, 38, 14, 0); +INSERT INTO order_details VALUES (10616, 70, 15, 15, 0.0500000007); +INSERT INTO order_details VALUES (10616, 71, 21.5, 15, 0.0500000007); +INSERT INTO order_details VALUES (10617, 59, 55, 30, 0.150000006); +INSERT INTO order_details VALUES (10618, 6, 25, 70, 0); +INSERT INTO order_details VALUES (10618, 56, 38, 20, 0); +INSERT INTO order_details VALUES (10618, 68, 12.5, 15, 0); +INSERT INTO order_details VALUES (10619, 21, 10, 42, 0); +INSERT INTO order_details VALUES (10619, 22, 21, 40, 0); +INSERT INTO order_details VALUES (10620, 24, 4.5, 5, 0); +INSERT INTO order_details VALUES (10620, 52, 7, 5, 0); +INSERT INTO order_details VALUES (10621, 19, 9.19999981, 5, 0); +INSERT INTO order_details VALUES (10621, 23, 9, 10, 0); +INSERT INTO order_details VALUES (10621, 70, 15, 20, 0); +INSERT INTO order_details VALUES (10621, 71, 21.5, 15, 0); +INSERT INTO order_details VALUES (10622, 2, 19, 20, 0); +INSERT INTO order_details VALUES (10622, 68, 12.5, 18, 0.200000003); +INSERT INTO order_details VALUES (10623, 14, 23.25, 21, 0); +INSERT INTO order_details VALUES (10623, 19, 9.19999981, 15, 0.100000001); +INSERT INTO order_details VALUES (10623, 21, 10, 25, 0.100000001); +INSERT INTO order_details VALUES (10623, 24, 4.5, 3, 0); +INSERT INTO order_details VALUES (10623, 35, 18, 30, 0.100000001); +INSERT INTO order_details VALUES (10624, 28, 45.5999985, 10, 0); +INSERT INTO order_details VALUES (10624, 29, 123.790001, 6, 0); +INSERT INTO order_details VALUES (10624, 44, 19.4500008, 10, 0); +INSERT INTO order_details VALUES (10625, 14, 23.25, 3, 0); +INSERT INTO order_details VALUES (10625, 42, 14, 5, 0); +INSERT INTO order_details VALUES (10625, 60, 34, 10, 0); +INSERT INTO order_details VALUES (10626, 53, 32.7999992, 12, 0); +INSERT INTO order_details VALUES (10626, 60, 34, 20, 0); +INSERT INTO order_details VALUES (10626, 71, 21.5, 20, 0); +INSERT INTO order_details VALUES (10627, 62, 49.2999992, 15, 0); +INSERT INTO order_details VALUES (10627, 73, 15, 35, 0.150000006); +INSERT INTO order_details VALUES (10628, 1, 18, 25, 0); +INSERT INTO order_details VALUES (10629, 29, 123.790001, 20, 0); +INSERT INTO order_details VALUES (10629, 64, 33.25, 9, 0); +INSERT INTO order_details VALUES (10630, 55, 24, 12, 0.0500000007); +INSERT INTO order_details VALUES (10630, 76, 18, 35, 0); +INSERT INTO order_details VALUES (10631, 75, 7.75, 8, 0.100000001); +INSERT INTO order_details VALUES (10632, 2, 19, 30, 0.0500000007); +INSERT INTO order_details VALUES (10632, 33, 2.5, 20, 0.0500000007); +INSERT INTO order_details VALUES (10633, 12, 38, 36, 0.150000006); +INSERT INTO order_details VALUES (10633, 13, 6, 13, 0.150000006); +INSERT INTO order_details VALUES (10633, 26, 31.2299995, 35, 0.150000006); +INSERT INTO order_details VALUES (10633, 62, 49.2999992, 80, 0.150000006); +INSERT INTO order_details VALUES (10634, 7, 30, 35, 0); +INSERT INTO order_details VALUES (10634, 18, 62.5, 50, 0); +INSERT INTO order_details VALUES (10634, 51, 53, 15, 0); +INSERT INTO order_details VALUES (10634, 75, 7.75, 2, 0); +INSERT INTO order_details VALUES (10635, 4, 22, 10, 0.100000001); +INSERT INTO order_details VALUES (10635, 5, 21.3500004, 15, 0.100000001); +INSERT INTO order_details VALUES (10635, 22, 21, 40, 0); +INSERT INTO order_details VALUES (10636, 4, 22, 25, 0); +INSERT INTO order_details VALUES (10636, 58, 13.25, 6, 0); +INSERT INTO order_details VALUES (10637, 11, 21, 10, 0); +INSERT INTO order_details VALUES (10637, 50, 16.25, 25, 0.0500000007); +INSERT INTO order_details VALUES (10637, 56, 38, 60, 0.0500000007); +INSERT INTO order_details VALUES (10638, 45, 9.5, 20, 0); +INSERT INTO order_details VALUES (10638, 65, 21.0499992, 21, 0); +INSERT INTO order_details VALUES (10638, 72, 34.7999992, 60, 0); +INSERT INTO order_details VALUES (10639, 18, 62.5, 8, 0); +INSERT INTO order_details VALUES (10640, 69, 36, 20, 0.25); +INSERT INTO order_details VALUES (10640, 70, 15, 15, 0.25); +INSERT INTO order_details VALUES (10641, 2, 19, 50, 0); +INSERT INTO order_details VALUES (10641, 40, 18.3999996, 60, 0); +INSERT INTO order_details VALUES (10642, 21, 10, 30, 0.200000003); +INSERT INTO order_details VALUES (10642, 61, 28.5, 20, 0.200000003); +INSERT INTO order_details VALUES (10643, 28, 45.5999985, 15, 0.25); +INSERT INTO order_details VALUES (10643, 39, 18, 21, 0.25); +INSERT INTO order_details VALUES (10643, 46, 12, 2, 0.25); +INSERT INTO order_details VALUES (10644, 18, 62.5, 4, 0.100000001); +INSERT INTO order_details VALUES (10644, 43, 46, 20, 0); +INSERT INTO order_details VALUES (10644, 46, 12, 21, 0.100000001); +INSERT INTO order_details VALUES (10645, 18, 62.5, 20, 0); +INSERT INTO order_details VALUES (10645, 36, 19, 15, 0); +INSERT INTO order_details VALUES (10646, 1, 18, 15, 0.25); +INSERT INTO order_details VALUES (10646, 10, 31, 18, 0.25); +INSERT INTO order_details VALUES (10646, 71, 21.5, 30, 0.25); +INSERT INTO order_details VALUES (10646, 77, 13, 35, 0.25); +INSERT INTO order_details VALUES (10647, 19, 9.19999981, 30, 0); +INSERT INTO order_details VALUES (10647, 39, 18, 20, 0); +INSERT INTO order_details VALUES (10648, 22, 21, 15, 0); +INSERT INTO order_details VALUES (10648, 24, 4.5, 15, 0.150000006); +INSERT INTO order_details VALUES (10649, 28, 45.5999985, 20, 0); +INSERT INTO order_details VALUES (10649, 72, 34.7999992, 15, 0); +INSERT INTO order_details VALUES (10650, 30, 25.8899994, 30, 0); +INSERT INTO order_details VALUES (10650, 53, 32.7999992, 25, 0.0500000007); +INSERT INTO order_details VALUES (10650, 54, 7.44999981, 30, 0); +INSERT INTO order_details VALUES (10651, 19, 9.19999981, 12, 0.25); +INSERT INTO order_details VALUES (10651, 22, 21, 20, 0.25); +INSERT INTO order_details VALUES (10652, 30, 25.8899994, 2, 0.25); +INSERT INTO order_details VALUES (10652, 42, 14, 20, 0); +INSERT INTO order_details VALUES (10653, 16, 17.4500008, 30, 0.100000001); +INSERT INTO order_details VALUES (10653, 60, 34, 20, 0.100000001); +INSERT INTO order_details VALUES (10654, 4, 22, 12, 0.100000001); +INSERT INTO order_details VALUES (10654, 39, 18, 20, 0.100000001); +INSERT INTO order_details VALUES (10654, 54, 7.44999981, 6, 0.100000001); +INSERT INTO order_details VALUES (10655, 41, 9.64999962, 20, 0.200000003); +INSERT INTO order_details VALUES (10656, 14, 23.25, 3, 0.100000001); +INSERT INTO order_details VALUES (10656, 44, 19.4500008, 28, 0.100000001); +INSERT INTO order_details VALUES (10656, 47, 9.5, 6, 0.100000001); +INSERT INTO order_details VALUES (10657, 15, 15.5, 50, 0); +INSERT INTO order_details VALUES (10657, 41, 9.64999962, 24, 0); +INSERT INTO order_details VALUES (10657, 46, 12, 45, 0); +INSERT INTO order_details VALUES (10657, 47, 9.5, 10, 0); +INSERT INTO order_details VALUES (10657, 56, 38, 45, 0); +INSERT INTO order_details VALUES (10657, 60, 34, 30, 0); +INSERT INTO order_details VALUES (10658, 21, 10, 60, 0); +INSERT INTO order_details VALUES (10658, 40, 18.3999996, 70, 0.0500000007); +INSERT INTO order_details VALUES (10658, 60, 34, 55, 0.0500000007); +INSERT INTO order_details VALUES (10658, 77, 13, 70, 0.0500000007); +INSERT INTO order_details VALUES (10659, 31, 12.5, 20, 0.0500000007); +INSERT INTO order_details VALUES (10659, 40, 18.3999996, 24, 0.0500000007); +INSERT INTO order_details VALUES (10659, 70, 15, 40, 0.0500000007); +INSERT INTO order_details VALUES (10660, 20, 81, 21, 0); +INSERT INTO order_details VALUES (10661, 39, 18, 3, 0.200000003); +INSERT INTO order_details VALUES (10661, 58, 13.25, 49, 0.200000003); +INSERT INTO order_details VALUES (10662, 68, 12.5, 10, 0); +INSERT INTO order_details VALUES (10663, 40, 18.3999996, 30, 0.0500000007); +INSERT INTO order_details VALUES (10663, 42, 14, 30, 0.0500000007); +INSERT INTO order_details VALUES (10663, 51, 53, 20, 0.0500000007); +INSERT INTO order_details VALUES (10664, 10, 31, 24, 0.150000006); +INSERT INTO order_details VALUES (10664, 56, 38, 12, 0.150000006); +INSERT INTO order_details VALUES (10664, 65, 21.0499992, 15, 0.150000006); +INSERT INTO order_details VALUES (10665, 51, 53, 20, 0); +INSERT INTO order_details VALUES (10665, 59, 55, 1, 0); +INSERT INTO order_details VALUES (10665, 76, 18, 10, 0); +INSERT INTO order_details VALUES (10666, 29, 123.790001, 36, 0); +INSERT INTO order_details VALUES (10666, 65, 21.0499992, 10, 0); +INSERT INTO order_details VALUES (10667, 69, 36, 45, 0.200000003); +INSERT INTO order_details VALUES (10667, 71, 21.5, 14, 0.200000003); +INSERT INTO order_details VALUES (10668, 31, 12.5, 8, 0.100000001); +INSERT INTO order_details VALUES (10668, 55, 24, 4, 0.100000001); +INSERT INTO order_details VALUES (10668, 64, 33.25, 15, 0.100000001); +INSERT INTO order_details VALUES (10669, 36, 19, 30, 0); +INSERT INTO order_details VALUES (10670, 23, 9, 32, 0); +INSERT INTO order_details VALUES (10670, 46, 12, 60, 0); +INSERT INTO order_details VALUES (10670, 67, 14, 25, 0); +INSERT INTO order_details VALUES (10670, 73, 15, 50, 0); +INSERT INTO order_details VALUES (10670, 75, 7.75, 25, 0); +INSERT INTO order_details VALUES (10671, 16, 17.4500008, 10, 0); +INSERT INTO order_details VALUES (10671, 62, 49.2999992, 10, 0); +INSERT INTO order_details VALUES (10671, 65, 21.0499992, 12, 0); +INSERT INTO order_details VALUES (10672, 38, 263.5, 15, 0.100000001); +INSERT INTO order_details VALUES (10672, 71, 21.5, 12, 0); +INSERT INTO order_details VALUES (10673, 16, 17.4500008, 3, 0); +INSERT INTO order_details VALUES (10673, 42, 14, 6, 0); +INSERT INTO order_details VALUES (10673, 43, 46, 6, 0); +INSERT INTO order_details VALUES (10674, 23, 9, 5, 0); +INSERT INTO order_details VALUES (10675, 14, 23.25, 30, 0); +INSERT INTO order_details VALUES (10675, 53, 32.7999992, 10, 0); +INSERT INTO order_details VALUES (10675, 58, 13.25, 30, 0); +INSERT INTO order_details VALUES (10676, 10, 31, 2, 0); +INSERT INTO order_details VALUES (10676, 19, 9.19999981, 7, 0); +INSERT INTO order_details VALUES (10676, 44, 19.4500008, 21, 0); +INSERT INTO order_details VALUES (10677, 26, 31.2299995, 30, 0.150000006); +INSERT INTO order_details VALUES (10677, 33, 2.5, 8, 0.150000006); +INSERT INTO order_details VALUES (10678, 12, 38, 100, 0); +INSERT INTO order_details VALUES (10678, 33, 2.5, 30, 0); +INSERT INTO order_details VALUES (10678, 41, 9.64999962, 120, 0); +INSERT INTO order_details VALUES (10678, 54, 7.44999981, 30, 0); +INSERT INTO order_details VALUES (10679, 59, 55, 12, 0); +INSERT INTO order_details VALUES (10680, 16, 17.4500008, 50, 0.25); +INSERT INTO order_details VALUES (10680, 31, 12.5, 20, 0.25); +INSERT INTO order_details VALUES (10680, 42, 14, 40, 0.25); +INSERT INTO order_details VALUES (10681, 19, 9.19999981, 30, 0.100000001); +INSERT INTO order_details VALUES (10681, 21, 10, 12, 0.100000001); +INSERT INTO order_details VALUES (10681, 64, 33.25, 28, 0); +INSERT INTO order_details VALUES (10682, 33, 2.5, 30, 0); +INSERT INTO order_details VALUES (10682, 66, 17, 4, 0); +INSERT INTO order_details VALUES (10682, 75, 7.75, 30, 0); +INSERT INTO order_details VALUES (10683, 52, 7, 9, 0); +INSERT INTO order_details VALUES (10684, 40, 18.3999996, 20, 0); +INSERT INTO order_details VALUES (10684, 47, 9.5, 40, 0); +INSERT INTO order_details VALUES (10684, 60, 34, 30, 0); +INSERT INTO order_details VALUES (10685, 10, 31, 20, 0); +INSERT INTO order_details VALUES (10685, 41, 9.64999962, 4, 0); +INSERT INTO order_details VALUES (10685, 47, 9.5, 15, 0); +INSERT INTO order_details VALUES (10686, 17, 39, 30, 0.200000003); +INSERT INTO order_details VALUES (10686, 26, 31.2299995, 15, 0); +INSERT INTO order_details VALUES (10687, 9, 97, 50, 0.25); +INSERT INTO order_details VALUES (10687, 29, 123.790001, 10, 0); +INSERT INTO order_details VALUES (10687, 36, 19, 6, 0.25); +INSERT INTO order_details VALUES (10688, 10, 31, 18, 0.100000001); +INSERT INTO order_details VALUES (10688, 28, 45.5999985, 60, 0.100000001); +INSERT INTO order_details VALUES (10688, 34, 14, 14, 0); +INSERT INTO order_details VALUES (10689, 1, 18, 35, 0.25); +INSERT INTO order_details VALUES (10690, 56, 38, 20, 0.25); +INSERT INTO order_details VALUES (10690, 77, 13, 30, 0.25); +INSERT INTO order_details VALUES (10691, 1, 18, 30, 0); +INSERT INTO order_details VALUES (10691, 29, 123.790001, 40, 0); +INSERT INTO order_details VALUES (10691, 43, 46, 40, 0); +INSERT INTO order_details VALUES (10691, 44, 19.4500008, 24, 0); +INSERT INTO order_details VALUES (10691, 62, 49.2999992, 48, 0); +INSERT INTO order_details VALUES (10692, 63, 43.9000015, 20, 0); +INSERT INTO order_details VALUES (10693, 9, 97, 6, 0); +INSERT INTO order_details VALUES (10693, 54, 7.44999981, 60, 0.150000006); +INSERT INTO order_details VALUES (10693, 69, 36, 30, 0.150000006); +INSERT INTO order_details VALUES (10693, 73, 15, 15, 0.150000006); +INSERT INTO order_details VALUES (10694, 7, 30, 90, 0); +INSERT INTO order_details VALUES (10694, 59, 55, 25, 0); +INSERT INTO order_details VALUES (10694, 70, 15, 50, 0); +INSERT INTO order_details VALUES (10695, 8, 40, 10, 0); +INSERT INTO order_details VALUES (10695, 12, 38, 4, 0); +INSERT INTO order_details VALUES (10695, 24, 4.5, 20, 0); +INSERT INTO order_details VALUES (10696, 17, 39, 20, 0); +INSERT INTO order_details VALUES (10696, 46, 12, 18, 0); +INSERT INTO order_details VALUES (10697, 19, 9.19999981, 7, 0.25); +INSERT INTO order_details VALUES (10697, 35, 18, 9, 0.25); +INSERT INTO order_details VALUES (10697, 58, 13.25, 30, 0.25); +INSERT INTO order_details VALUES (10697, 70, 15, 30, 0.25); +INSERT INTO order_details VALUES (10698, 11, 21, 15, 0); +INSERT INTO order_details VALUES (10698, 17, 39, 8, 0.0500000007); +INSERT INTO order_details VALUES (10698, 29, 123.790001, 12, 0.0500000007); +INSERT INTO order_details VALUES (10698, 65, 21.0499992, 65, 0.0500000007); +INSERT INTO order_details VALUES (10698, 70, 15, 8, 0.0500000007); +INSERT INTO order_details VALUES (10699, 47, 9.5, 12, 0); +INSERT INTO order_details VALUES (10700, 1, 18, 5, 0.200000003); +INSERT INTO order_details VALUES (10700, 34, 14, 12, 0.200000003); +INSERT INTO order_details VALUES (10700, 68, 12.5, 40, 0.200000003); +INSERT INTO order_details VALUES (10700, 71, 21.5, 60, 0.200000003); +INSERT INTO order_details VALUES (10701, 59, 55, 42, 0.150000006); +INSERT INTO order_details VALUES (10701, 71, 21.5, 20, 0.150000006); +INSERT INTO order_details VALUES (10701, 76, 18, 35, 0.150000006); +INSERT INTO order_details VALUES (10702, 3, 10, 6, 0); +INSERT INTO order_details VALUES (10702, 76, 18, 15, 0); +INSERT INTO order_details VALUES (10703, 2, 19, 5, 0); +INSERT INTO order_details VALUES (10703, 59, 55, 35, 0); +INSERT INTO order_details VALUES (10703, 73, 15, 35, 0); +INSERT INTO order_details VALUES (10704, 4, 22, 6, 0); +INSERT INTO order_details VALUES (10704, 24, 4.5, 35, 0); +INSERT INTO order_details VALUES (10704, 48, 12.75, 24, 0); +INSERT INTO order_details VALUES (10705, 31, 12.5, 20, 0); +INSERT INTO order_details VALUES (10705, 32, 32, 4, 0); +INSERT INTO order_details VALUES (10706, 16, 17.4500008, 20, 0); +INSERT INTO order_details VALUES (10706, 43, 46, 24, 0); +INSERT INTO order_details VALUES (10706, 59, 55, 8, 0); +INSERT INTO order_details VALUES (10707, 55, 24, 21, 0); +INSERT INTO order_details VALUES (10707, 57, 19.5, 40, 0); +INSERT INTO order_details VALUES (10707, 70, 15, 28, 0.150000006); +INSERT INTO order_details VALUES (10708, 5, 21.3500004, 4, 0); +INSERT INTO order_details VALUES (10708, 36, 19, 5, 0); +INSERT INTO order_details VALUES (10709, 8, 40, 40, 0); +INSERT INTO order_details VALUES (10709, 51, 53, 28, 0); +INSERT INTO order_details VALUES (10709, 60, 34, 10, 0); +INSERT INTO order_details VALUES (10710, 19, 9.19999981, 5, 0); +INSERT INTO order_details VALUES (10710, 47, 9.5, 5, 0); +INSERT INTO order_details VALUES (10711, 19, 9.19999981, 12, 0); +INSERT INTO order_details VALUES (10711, 41, 9.64999962, 42, 0); +INSERT INTO order_details VALUES (10711, 53, 32.7999992, 120, 0); +INSERT INTO order_details VALUES (10712, 53, 32.7999992, 3, 0.0500000007); +INSERT INTO order_details VALUES (10712, 56, 38, 30, 0); +INSERT INTO order_details VALUES (10713, 10, 31, 18, 0); +INSERT INTO order_details VALUES (10713, 26, 31.2299995, 30, 0); +INSERT INTO order_details VALUES (10713, 45, 9.5, 110, 0); +INSERT INTO order_details VALUES (10713, 46, 12, 24, 0); +INSERT INTO order_details VALUES (10714, 2, 19, 30, 0.25); +INSERT INTO order_details VALUES (10714, 17, 39, 27, 0.25); +INSERT INTO order_details VALUES (10714, 47, 9.5, 50, 0.25); +INSERT INTO order_details VALUES (10714, 56, 38, 18, 0.25); +INSERT INTO order_details VALUES (10714, 58, 13.25, 12, 0.25); +INSERT INTO order_details VALUES (10715, 10, 31, 21, 0); +INSERT INTO order_details VALUES (10715, 71, 21.5, 30, 0); +INSERT INTO order_details VALUES (10716, 21, 10, 5, 0); +INSERT INTO order_details VALUES (10716, 51, 53, 7, 0); +INSERT INTO order_details VALUES (10716, 61, 28.5, 10, 0); +INSERT INTO order_details VALUES (10717, 21, 10, 32, 0.0500000007); +INSERT INTO order_details VALUES (10717, 54, 7.44999981, 15, 0); +INSERT INTO order_details VALUES (10717, 69, 36, 25, 0.0500000007); +INSERT INTO order_details VALUES (10718, 12, 38, 36, 0); +INSERT INTO order_details VALUES (10718, 16, 17.4500008, 20, 0); +INSERT INTO order_details VALUES (10718, 36, 19, 40, 0); +INSERT INTO order_details VALUES (10718, 62, 49.2999992, 20, 0); +INSERT INTO order_details VALUES (10719, 18, 62.5, 12, 0.25); +INSERT INTO order_details VALUES (10719, 30, 25.8899994, 3, 0.25); +INSERT INTO order_details VALUES (10719, 54, 7.44999981, 40, 0.25); +INSERT INTO order_details VALUES (10720, 35, 18, 21, 0); +INSERT INTO order_details VALUES (10720, 71, 21.5, 8, 0); +INSERT INTO order_details VALUES (10721, 44, 19.4500008, 50, 0.0500000007); +INSERT INTO order_details VALUES (10722, 2, 19, 3, 0); +INSERT INTO order_details VALUES (10722, 31, 12.5, 50, 0); +INSERT INTO order_details VALUES (10722, 68, 12.5, 45, 0); +INSERT INTO order_details VALUES (10722, 75, 7.75, 42, 0); +INSERT INTO order_details VALUES (10723, 26, 31.2299995, 15, 0); +INSERT INTO order_details VALUES (10724, 10, 31, 16, 0); +INSERT INTO order_details VALUES (10724, 61, 28.5, 5, 0); +INSERT INTO order_details VALUES (10725, 41, 9.64999962, 12, 0); +INSERT INTO order_details VALUES (10725, 52, 7, 4, 0); +INSERT INTO order_details VALUES (10725, 55, 24, 6, 0); +INSERT INTO order_details VALUES (10726, 4, 22, 25, 0); +INSERT INTO order_details VALUES (10726, 11, 21, 5, 0); +INSERT INTO order_details VALUES (10727, 17, 39, 20, 0.0500000007); +INSERT INTO order_details VALUES (10727, 56, 38, 10, 0.0500000007); +INSERT INTO order_details VALUES (10727, 59, 55, 10, 0.0500000007); +INSERT INTO order_details VALUES (10728, 30, 25.8899994, 15, 0); +INSERT INTO order_details VALUES (10728, 40, 18.3999996, 6, 0); +INSERT INTO order_details VALUES (10728, 55, 24, 12, 0); +INSERT INTO order_details VALUES (10728, 60, 34, 15, 0); +INSERT INTO order_details VALUES (10729, 1, 18, 50, 0); +INSERT INTO order_details VALUES (10729, 21, 10, 30, 0); +INSERT INTO order_details VALUES (10729, 50, 16.25, 40, 0); +INSERT INTO order_details VALUES (10730, 16, 17.4500008, 15, 0.0500000007); +INSERT INTO order_details VALUES (10730, 31, 12.5, 3, 0.0500000007); +INSERT INTO order_details VALUES (10730, 65, 21.0499992, 10, 0.0500000007); +INSERT INTO order_details VALUES (10731, 21, 10, 40, 0.0500000007); +INSERT INTO order_details VALUES (10731, 51, 53, 30, 0.0500000007); +INSERT INTO order_details VALUES (10732, 76, 18, 20, 0); +INSERT INTO order_details VALUES (10733, 14, 23.25, 16, 0); +INSERT INTO order_details VALUES (10733, 28, 45.5999985, 20, 0); +INSERT INTO order_details VALUES (10733, 52, 7, 25, 0); +INSERT INTO order_details VALUES (10734, 6, 25, 30, 0); +INSERT INTO order_details VALUES (10734, 30, 25.8899994, 15, 0); +INSERT INTO order_details VALUES (10734, 76, 18, 20, 0); +INSERT INTO order_details VALUES (10735, 61, 28.5, 20, 0.100000001); +INSERT INTO order_details VALUES (10735, 77, 13, 2, 0.100000001); +INSERT INTO order_details VALUES (10736, 65, 21.0499992, 40, 0); +INSERT INTO order_details VALUES (10736, 75, 7.75, 20, 0); +INSERT INTO order_details VALUES (10737, 13, 6, 4, 0); +INSERT INTO order_details VALUES (10737, 41, 9.64999962, 12, 0); +INSERT INTO order_details VALUES (10738, 16, 17.4500008, 3, 0); +INSERT INTO order_details VALUES (10739, 36, 19, 6, 0); +INSERT INTO order_details VALUES (10739, 52, 7, 18, 0); +INSERT INTO order_details VALUES (10740, 28, 45.5999985, 5, 0.200000003); +INSERT INTO order_details VALUES (10740, 35, 18, 35, 0.200000003); +INSERT INTO order_details VALUES (10740, 45, 9.5, 40, 0.200000003); +INSERT INTO order_details VALUES (10740, 56, 38, 14, 0.200000003); +INSERT INTO order_details VALUES (10741, 2, 19, 15, 0.200000003); +INSERT INTO order_details VALUES (10742, 3, 10, 20, 0); +INSERT INTO order_details VALUES (10742, 60, 34, 50, 0); +INSERT INTO order_details VALUES (10742, 72, 34.7999992, 35, 0); +INSERT INTO order_details VALUES (10743, 46, 12, 28, 0.0500000007); +INSERT INTO order_details VALUES (10744, 40, 18.3999996, 50, 0.200000003); +INSERT INTO order_details VALUES (10745, 18, 62.5, 24, 0); +INSERT INTO order_details VALUES (10745, 44, 19.4500008, 16, 0); +INSERT INTO order_details VALUES (10745, 59, 55, 45, 0); +INSERT INTO order_details VALUES (10745, 72, 34.7999992, 7, 0); +INSERT INTO order_details VALUES (10746, 13, 6, 6, 0); +INSERT INTO order_details VALUES (10746, 42, 14, 28, 0); +INSERT INTO order_details VALUES (10746, 62, 49.2999992, 9, 0); +INSERT INTO order_details VALUES (10746, 69, 36, 40, 0); +INSERT INTO order_details VALUES (10747, 31, 12.5, 8, 0); +INSERT INTO order_details VALUES (10747, 41, 9.64999962, 35, 0); +INSERT INTO order_details VALUES (10747, 63, 43.9000015, 9, 0); +INSERT INTO order_details VALUES (10747, 69, 36, 30, 0); +INSERT INTO order_details VALUES (10748, 23, 9, 44, 0); +INSERT INTO order_details VALUES (10748, 40, 18.3999996, 40, 0); +INSERT INTO order_details VALUES (10748, 56, 38, 28, 0); +INSERT INTO order_details VALUES (10749, 56, 38, 15, 0); +INSERT INTO order_details VALUES (10749, 59, 55, 6, 0); +INSERT INTO order_details VALUES (10749, 76, 18, 10, 0); +INSERT INTO order_details VALUES (10750, 14, 23.25, 5, 0.150000006); +INSERT INTO order_details VALUES (10750, 45, 9.5, 40, 0.150000006); +INSERT INTO order_details VALUES (10750, 59, 55, 25, 0.150000006); +INSERT INTO order_details VALUES (10751, 26, 31.2299995, 12, 0.100000001); +INSERT INTO order_details VALUES (10751, 30, 25.8899994, 30, 0); +INSERT INTO order_details VALUES (10751, 50, 16.25, 20, 0.100000001); +INSERT INTO order_details VALUES (10751, 73, 15, 15, 0); +INSERT INTO order_details VALUES (10752, 1, 18, 8, 0); +INSERT INTO order_details VALUES (10752, 69, 36, 3, 0); +INSERT INTO order_details VALUES (10753, 45, 9.5, 4, 0); +INSERT INTO order_details VALUES (10753, 74, 10, 5, 0); +INSERT INTO order_details VALUES (10754, 40, 18.3999996, 3, 0); +INSERT INTO order_details VALUES (10755, 47, 9.5, 30, 0.25); +INSERT INTO order_details VALUES (10755, 56, 38, 30, 0.25); +INSERT INTO order_details VALUES (10755, 57, 19.5, 14, 0.25); +INSERT INTO order_details VALUES (10755, 69, 36, 25, 0.25); +INSERT INTO order_details VALUES (10756, 18, 62.5, 21, 0.200000003); +INSERT INTO order_details VALUES (10756, 36, 19, 20, 0.200000003); +INSERT INTO order_details VALUES (10756, 68, 12.5, 6, 0.200000003); +INSERT INTO order_details VALUES (10756, 69, 36, 20, 0.200000003); +INSERT INTO order_details VALUES (10757, 34, 14, 30, 0); +INSERT INTO order_details VALUES (10757, 59, 55, 7, 0); +INSERT INTO order_details VALUES (10757, 62, 49.2999992, 30, 0); +INSERT INTO order_details VALUES (10757, 64, 33.25, 24, 0); +INSERT INTO order_details VALUES (10758, 26, 31.2299995, 20, 0); +INSERT INTO order_details VALUES (10758, 52, 7, 60, 0); +INSERT INTO order_details VALUES (10758, 70, 15, 40, 0); +INSERT INTO order_details VALUES (10759, 32, 32, 10, 0); +INSERT INTO order_details VALUES (10760, 25, 14, 12, 0.25); +INSERT INTO order_details VALUES (10760, 27, 43.9000015, 40, 0); +INSERT INTO order_details VALUES (10760, 43, 46, 30, 0.25); +INSERT INTO order_details VALUES (10761, 25, 14, 35, 0.25); +INSERT INTO order_details VALUES (10761, 75, 7.75, 18, 0); +INSERT INTO order_details VALUES (10762, 39, 18, 16, 0); +INSERT INTO order_details VALUES (10762, 47, 9.5, 30, 0); +INSERT INTO order_details VALUES (10762, 51, 53, 28, 0); +INSERT INTO order_details VALUES (10762, 56, 38, 60, 0); +INSERT INTO order_details VALUES (10763, 21, 10, 40, 0); +INSERT INTO order_details VALUES (10763, 22, 21, 6, 0); +INSERT INTO order_details VALUES (10763, 24, 4.5, 20, 0); +INSERT INTO order_details VALUES (10764, 3, 10, 20, 0.100000001); +INSERT INTO order_details VALUES (10764, 39, 18, 130, 0.100000001); +INSERT INTO order_details VALUES (10765, 65, 21.0499992, 80, 0.100000001); +INSERT INTO order_details VALUES (10766, 2, 19, 40, 0); +INSERT INTO order_details VALUES (10766, 7, 30, 35, 0); +INSERT INTO order_details VALUES (10766, 68, 12.5, 40, 0); +INSERT INTO order_details VALUES (10767, 42, 14, 2, 0); +INSERT INTO order_details VALUES (10768, 22, 21, 4, 0); +INSERT INTO order_details VALUES (10768, 31, 12.5, 50, 0); +INSERT INTO order_details VALUES (10768, 60, 34, 15, 0); +INSERT INTO order_details VALUES (10768, 71, 21.5, 12, 0); +INSERT INTO order_details VALUES (10769, 41, 9.64999962, 30, 0.0500000007); +INSERT INTO order_details VALUES (10769, 52, 7, 15, 0.0500000007); +INSERT INTO order_details VALUES (10769, 61, 28.5, 20, 0); +INSERT INTO order_details VALUES (10769, 62, 49.2999992, 15, 0); +INSERT INTO order_details VALUES (10770, 11, 21, 15, 0.25); +INSERT INTO order_details VALUES (10771, 71, 21.5, 16, 0); +INSERT INTO order_details VALUES (10772, 29, 123.790001, 18, 0); +INSERT INTO order_details VALUES (10772, 59, 55, 25, 0); +INSERT INTO order_details VALUES (10773, 17, 39, 33, 0); +INSERT INTO order_details VALUES (10773, 31, 12.5, 70, 0.200000003); +INSERT INTO order_details VALUES (10773, 75, 7.75, 7, 0.200000003); +INSERT INTO order_details VALUES (10774, 31, 12.5, 2, 0.25); +INSERT INTO order_details VALUES (10774, 66, 17, 50, 0); +INSERT INTO order_details VALUES (10775, 10, 31, 6, 0); +INSERT INTO order_details VALUES (10775, 67, 14, 3, 0); +INSERT INTO order_details VALUES (10776, 31, 12.5, 16, 0.0500000007); +INSERT INTO order_details VALUES (10776, 42, 14, 12, 0.0500000007); +INSERT INTO order_details VALUES (10776, 45, 9.5, 27, 0.0500000007); +INSERT INTO order_details VALUES (10776, 51, 53, 120, 0.0500000007); +INSERT INTO order_details VALUES (10777, 42, 14, 20, 0.200000003); +INSERT INTO order_details VALUES (10778, 41, 9.64999962, 10, 0); +INSERT INTO order_details VALUES (10779, 16, 17.4500008, 20, 0); +INSERT INTO order_details VALUES (10779, 62, 49.2999992, 20, 0); +INSERT INTO order_details VALUES (10780, 70, 15, 35, 0); +INSERT INTO order_details VALUES (10780, 77, 13, 15, 0); +INSERT INTO order_details VALUES (10781, 54, 7.44999981, 3, 0.200000003); +INSERT INTO order_details VALUES (10781, 56, 38, 20, 0.200000003); +INSERT INTO order_details VALUES (10781, 74, 10, 35, 0); +INSERT INTO order_details VALUES (10782, 31, 12.5, 1, 0); +INSERT INTO order_details VALUES (10783, 31, 12.5, 10, 0); +INSERT INTO order_details VALUES (10783, 38, 263.5, 5, 0); +INSERT INTO order_details VALUES (10784, 36, 19, 30, 0); +INSERT INTO order_details VALUES (10784, 39, 18, 2, 0.150000006); +INSERT INTO order_details VALUES (10784, 72, 34.7999992, 30, 0.150000006); +INSERT INTO order_details VALUES (10785, 10, 31, 10, 0); +INSERT INTO order_details VALUES (10785, 75, 7.75, 10, 0); +INSERT INTO order_details VALUES (10786, 8, 40, 30, 0.200000003); +INSERT INTO order_details VALUES (10786, 30, 25.8899994, 15, 0.200000003); +INSERT INTO order_details VALUES (10786, 75, 7.75, 42, 0.200000003); +INSERT INTO order_details VALUES (10787, 2, 19, 15, 0.0500000007); +INSERT INTO order_details VALUES (10787, 29, 123.790001, 20, 0.0500000007); +INSERT INTO order_details VALUES (10788, 19, 9.19999981, 50, 0.0500000007); +INSERT INTO order_details VALUES (10788, 75, 7.75, 40, 0.0500000007); +INSERT INTO order_details VALUES (10789, 18, 62.5, 30, 0); +INSERT INTO order_details VALUES (10789, 35, 18, 15, 0); +INSERT INTO order_details VALUES (10789, 63, 43.9000015, 30, 0); +INSERT INTO order_details VALUES (10789, 68, 12.5, 18, 0); +INSERT INTO order_details VALUES (10790, 7, 30, 3, 0.150000006); +INSERT INTO order_details VALUES (10790, 56, 38, 20, 0.150000006); +INSERT INTO order_details VALUES (10791, 29, 123.790001, 14, 0.0500000007); +INSERT INTO order_details VALUES (10791, 41, 9.64999962, 20, 0.0500000007); +INSERT INTO order_details VALUES (10792, 2, 19, 10, 0); +INSERT INTO order_details VALUES (10792, 54, 7.44999981, 3, 0); +INSERT INTO order_details VALUES (10792, 68, 12.5, 15, 0); +INSERT INTO order_details VALUES (10793, 41, 9.64999962, 14, 0); +INSERT INTO order_details VALUES (10793, 52, 7, 8, 0); +INSERT INTO order_details VALUES (10794, 14, 23.25, 15, 0.200000003); +INSERT INTO order_details VALUES (10794, 54, 7.44999981, 6, 0.200000003); +INSERT INTO order_details VALUES (10795, 16, 17.4500008, 65, 0); +INSERT INTO order_details VALUES (10795, 17, 39, 35, 0.25); +INSERT INTO order_details VALUES (10796, 26, 31.2299995, 21, 0.200000003); +INSERT INTO order_details VALUES (10796, 44, 19.4500008, 10, 0); +INSERT INTO order_details VALUES (10796, 64, 33.25, 35, 0.200000003); +INSERT INTO order_details VALUES (10796, 69, 36, 24, 0.200000003); +INSERT INTO order_details VALUES (10797, 11, 21, 20, 0); +INSERT INTO order_details VALUES (10798, 62, 49.2999992, 2, 0); +INSERT INTO order_details VALUES (10798, 72, 34.7999992, 10, 0); +INSERT INTO order_details VALUES (10799, 13, 6, 20, 0.150000006); +INSERT INTO order_details VALUES (10799, 24, 4.5, 20, 0.150000006); +INSERT INTO order_details VALUES (10799, 59, 55, 25, 0); +INSERT INTO order_details VALUES (10800, 11, 21, 50, 0.100000001); +INSERT INTO order_details VALUES (10800, 51, 53, 10, 0.100000001); +INSERT INTO order_details VALUES (10800, 54, 7.44999981, 7, 0.100000001); +INSERT INTO order_details VALUES (10801, 17, 39, 40, 0.25); +INSERT INTO order_details VALUES (10801, 29, 123.790001, 20, 0.25); +INSERT INTO order_details VALUES (10802, 30, 25.8899994, 25, 0.25); +INSERT INTO order_details VALUES (10802, 51, 53, 30, 0.25); +INSERT INTO order_details VALUES (10802, 55, 24, 60, 0.25); +INSERT INTO order_details VALUES (10802, 62, 49.2999992, 5, 0.25); +INSERT INTO order_details VALUES (10803, 19, 9.19999981, 24, 0.0500000007); +INSERT INTO order_details VALUES (10803, 25, 14, 15, 0.0500000007); +INSERT INTO order_details VALUES (10803, 59, 55, 15, 0.0500000007); +INSERT INTO order_details VALUES (10804, 10, 31, 36, 0); +INSERT INTO order_details VALUES (10804, 28, 45.5999985, 24, 0); +INSERT INTO order_details VALUES (10804, 49, 20, 4, 0.150000006); +INSERT INTO order_details VALUES (10805, 34, 14, 10, 0); +INSERT INTO order_details VALUES (10805, 38, 263.5, 10, 0); +INSERT INTO order_details VALUES (10806, 2, 19, 20, 0.25); +INSERT INTO order_details VALUES (10806, 65, 21.0499992, 2, 0); +INSERT INTO order_details VALUES (10806, 74, 10, 15, 0.25); +INSERT INTO order_details VALUES (10807, 40, 18.3999996, 1, 0); +INSERT INTO order_details VALUES (10808, 56, 38, 20, 0.150000006); +INSERT INTO order_details VALUES (10808, 76, 18, 50, 0.150000006); +INSERT INTO order_details VALUES (10809, 52, 7, 20, 0); +INSERT INTO order_details VALUES (10810, 13, 6, 7, 0); +INSERT INTO order_details VALUES (10810, 25, 14, 5, 0); +INSERT INTO order_details VALUES (10810, 70, 15, 5, 0); +INSERT INTO order_details VALUES (10811, 19, 9.19999981, 15, 0); +INSERT INTO order_details VALUES (10811, 23, 9, 18, 0); +INSERT INTO order_details VALUES (10811, 40, 18.3999996, 30, 0); +INSERT INTO order_details VALUES (10812, 31, 12.5, 16, 0.100000001); +INSERT INTO order_details VALUES (10812, 72, 34.7999992, 40, 0.100000001); +INSERT INTO order_details VALUES (10812, 77, 13, 20, 0); +INSERT INTO order_details VALUES (10813, 2, 19, 12, 0.200000003); +INSERT INTO order_details VALUES (10813, 46, 12, 35, 0); +INSERT INTO order_details VALUES (10814, 41, 9.64999962, 20, 0); +INSERT INTO order_details VALUES (10814, 43, 46, 20, 0.150000006); +INSERT INTO order_details VALUES (10814, 48, 12.75, 8, 0.150000006); +INSERT INTO order_details VALUES (10814, 61, 28.5, 30, 0.150000006); +INSERT INTO order_details VALUES (10815, 33, 2.5, 16, 0); +INSERT INTO order_details VALUES (10816, 38, 263.5, 30, 0.0500000007); +INSERT INTO order_details VALUES (10816, 62, 49.2999992, 20, 0.0500000007); +INSERT INTO order_details VALUES (10817, 26, 31.2299995, 40, 0.150000006); +INSERT INTO order_details VALUES (10817, 38, 263.5, 30, 0); +INSERT INTO order_details VALUES (10817, 40, 18.3999996, 60, 0.150000006); +INSERT INTO order_details VALUES (10817, 62, 49.2999992, 25, 0.150000006); +INSERT INTO order_details VALUES (10818, 32, 32, 20, 0); +INSERT INTO order_details VALUES (10818, 41, 9.64999962, 20, 0); +INSERT INTO order_details VALUES (10819, 43, 46, 7, 0); +INSERT INTO order_details VALUES (10819, 75, 7.75, 20, 0); +INSERT INTO order_details VALUES (10820, 56, 38, 30, 0); +INSERT INTO order_details VALUES (10821, 35, 18, 20, 0); +INSERT INTO order_details VALUES (10821, 51, 53, 6, 0); +INSERT INTO order_details VALUES (10822, 62, 49.2999992, 3, 0); +INSERT INTO order_details VALUES (10822, 70, 15, 6, 0); +INSERT INTO order_details VALUES (10823, 11, 21, 20, 0.100000001); +INSERT INTO order_details VALUES (10823, 57, 19.5, 15, 0); +INSERT INTO order_details VALUES (10823, 59, 55, 40, 0.100000001); +INSERT INTO order_details VALUES (10823, 77, 13, 15, 0.100000001); +INSERT INTO order_details VALUES (10824, 41, 9.64999962, 12, 0); +INSERT INTO order_details VALUES (10824, 70, 15, 9, 0); +INSERT INTO order_details VALUES (10825, 26, 31.2299995, 12, 0); +INSERT INTO order_details VALUES (10825, 53, 32.7999992, 20, 0); +INSERT INTO order_details VALUES (10826, 31, 12.5, 35, 0); +INSERT INTO order_details VALUES (10826, 57, 19.5, 15, 0); +INSERT INTO order_details VALUES (10827, 10, 31, 15, 0); +INSERT INTO order_details VALUES (10827, 39, 18, 21, 0); +INSERT INTO order_details VALUES (10828, 20, 81, 5, 0); +INSERT INTO order_details VALUES (10828, 38, 263.5, 2, 0); +INSERT INTO order_details VALUES (10829, 2, 19, 10, 0); +INSERT INTO order_details VALUES (10829, 8, 40, 20, 0); +INSERT INTO order_details VALUES (10829, 13, 6, 10, 0); +INSERT INTO order_details VALUES (10829, 60, 34, 21, 0); +INSERT INTO order_details VALUES (10830, 6, 25, 6, 0); +INSERT INTO order_details VALUES (10830, 39, 18, 28, 0); +INSERT INTO order_details VALUES (10830, 60, 34, 30, 0); +INSERT INTO order_details VALUES (10830, 68, 12.5, 24, 0); +INSERT INTO order_details VALUES (10831, 19, 9.19999981, 2, 0); +INSERT INTO order_details VALUES (10831, 35, 18, 8, 0); +INSERT INTO order_details VALUES (10831, 38, 263.5, 8, 0); +INSERT INTO order_details VALUES (10831, 43, 46, 9, 0); +INSERT INTO order_details VALUES (10832, 13, 6, 3, 0.200000003); +INSERT INTO order_details VALUES (10832, 25, 14, 10, 0.200000003); +INSERT INTO order_details VALUES (10832, 44, 19.4500008, 16, 0.200000003); +INSERT INTO order_details VALUES (10832, 64, 33.25, 3, 0); +INSERT INTO order_details VALUES (10833, 7, 30, 20, 0.100000001); +INSERT INTO order_details VALUES (10833, 31, 12.5, 9, 0.100000001); +INSERT INTO order_details VALUES (10833, 53, 32.7999992, 9, 0.100000001); +INSERT INTO order_details VALUES (10834, 29, 123.790001, 8, 0.0500000007); +INSERT INTO order_details VALUES (10834, 30, 25.8899994, 20, 0.0500000007); +INSERT INTO order_details VALUES (10835, 59, 55, 15, 0); +INSERT INTO order_details VALUES (10835, 77, 13, 2, 0.200000003); +INSERT INTO order_details VALUES (10836, 22, 21, 52, 0); +INSERT INTO order_details VALUES (10836, 35, 18, 6, 0); +INSERT INTO order_details VALUES (10836, 57, 19.5, 24, 0); +INSERT INTO order_details VALUES (10836, 60, 34, 60, 0); +INSERT INTO order_details VALUES (10836, 64, 33.25, 30, 0); +INSERT INTO order_details VALUES (10837, 13, 6, 6, 0); +INSERT INTO order_details VALUES (10837, 40, 18.3999996, 25, 0); +INSERT INTO order_details VALUES (10837, 47, 9.5, 40, 0.25); +INSERT INTO order_details VALUES (10837, 76, 18, 21, 0.25); +INSERT INTO order_details VALUES (10838, 1, 18, 4, 0.25); +INSERT INTO order_details VALUES (10838, 18, 62.5, 25, 0.25); +INSERT INTO order_details VALUES (10838, 36, 19, 50, 0.25); +INSERT INTO order_details VALUES (10839, 58, 13.25, 30, 0.100000001); +INSERT INTO order_details VALUES (10839, 72, 34.7999992, 15, 0.100000001); +INSERT INTO order_details VALUES (10840, 25, 14, 6, 0.200000003); +INSERT INTO order_details VALUES (10840, 39, 18, 10, 0.200000003); +INSERT INTO order_details VALUES (10841, 10, 31, 16, 0); +INSERT INTO order_details VALUES (10841, 56, 38, 30, 0); +INSERT INTO order_details VALUES (10841, 59, 55, 50, 0); +INSERT INTO order_details VALUES (10841, 77, 13, 15, 0); +INSERT INTO order_details VALUES (10842, 11, 21, 15, 0); +INSERT INTO order_details VALUES (10842, 43, 46, 5, 0); +INSERT INTO order_details VALUES (10842, 68, 12.5, 20, 0); +INSERT INTO order_details VALUES (10842, 70, 15, 12, 0); +INSERT INTO order_details VALUES (10843, 51, 53, 4, 0.25); +INSERT INTO order_details VALUES (10844, 22, 21, 35, 0); +INSERT INTO order_details VALUES (10845, 23, 9, 70, 0.100000001); +INSERT INTO order_details VALUES (10845, 35, 18, 25, 0.100000001); +INSERT INTO order_details VALUES (10845, 42, 14, 42, 0.100000001); +INSERT INTO order_details VALUES (10845, 58, 13.25, 60, 0.100000001); +INSERT INTO order_details VALUES (10845, 64, 33.25, 48, 0); +INSERT INTO order_details VALUES (10846, 4, 22, 21, 0); +INSERT INTO order_details VALUES (10846, 70, 15, 30, 0); +INSERT INTO order_details VALUES (10846, 74, 10, 20, 0); +INSERT INTO order_details VALUES (10847, 1, 18, 80, 0.200000003); +INSERT INTO order_details VALUES (10847, 19, 9.19999981, 12, 0.200000003); +INSERT INTO order_details VALUES (10847, 37, 26, 60, 0.200000003); +INSERT INTO order_details VALUES (10847, 45, 9.5, 36, 0.200000003); +INSERT INTO order_details VALUES (10847, 60, 34, 45, 0.200000003); +INSERT INTO order_details VALUES (10847, 71, 21.5, 55, 0.200000003); +INSERT INTO order_details VALUES (10848, 5, 21.3500004, 30, 0); +INSERT INTO order_details VALUES (10848, 9, 97, 3, 0); +INSERT INTO order_details VALUES (10849, 3, 10, 49, 0); +INSERT INTO order_details VALUES (10849, 26, 31.2299995, 18, 0.150000006); +INSERT INTO order_details VALUES (10850, 25, 14, 20, 0.150000006); +INSERT INTO order_details VALUES (10850, 33, 2.5, 4, 0.150000006); +INSERT INTO order_details VALUES (10850, 70, 15, 30, 0.150000006); +INSERT INTO order_details VALUES (10851, 2, 19, 5, 0.0500000007); +INSERT INTO order_details VALUES (10851, 25, 14, 10, 0.0500000007); +INSERT INTO order_details VALUES (10851, 57, 19.5, 10, 0.0500000007); +INSERT INTO order_details VALUES (10851, 59, 55, 42, 0.0500000007); +INSERT INTO order_details VALUES (10852, 2, 19, 15, 0); +INSERT INTO order_details VALUES (10852, 17, 39, 6, 0); +INSERT INTO order_details VALUES (10852, 62, 49.2999992, 50, 0); +INSERT INTO order_details VALUES (10853, 18, 62.5, 10, 0); +INSERT INTO order_details VALUES (10854, 10, 31, 100, 0.150000006); +INSERT INTO order_details VALUES (10854, 13, 6, 65, 0.150000006); +INSERT INTO order_details VALUES (10855, 16, 17.4500008, 50, 0); +INSERT INTO order_details VALUES (10855, 31, 12.5, 14, 0); +INSERT INTO order_details VALUES (10855, 56, 38, 24, 0); +INSERT INTO order_details VALUES (10855, 65, 21.0499992, 15, 0.150000006); +INSERT INTO order_details VALUES (10856, 2, 19, 20, 0); +INSERT INTO order_details VALUES (10856, 42, 14, 20, 0); +INSERT INTO order_details VALUES (10857, 3, 10, 30, 0); +INSERT INTO order_details VALUES (10857, 26, 31.2299995, 35, 0.25); +INSERT INTO order_details VALUES (10857, 29, 123.790001, 10, 0.25); +INSERT INTO order_details VALUES (10858, 7, 30, 5, 0); +INSERT INTO order_details VALUES (10858, 27, 43.9000015, 10, 0); +INSERT INTO order_details VALUES (10858, 70, 15, 4, 0); +INSERT INTO order_details VALUES (10859, 24, 4.5, 40, 0.25); +INSERT INTO order_details VALUES (10859, 54, 7.44999981, 35, 0.25); +INSERT INTO order_details VALUES (10859, 64, 33.25, 30, 0.25); +INSERT INTO order_details VALUES (10860, 51, 53, 3, 0); +INSERT INTO order_details VALUES (10860, 76, 18, 20, 0); +INSERT INTO order_details VALUES (10861, 17, 39, 42, 0); +INSERT INTO order_details VALUES (10861, 18, 62.5, 20, 0); +INSERT INTO order_details VALUES (10861, 21, 10, 40, 0); +INSERT INTO order_details VALUES (10861, 33, 2.5, 35, 0); +INSERT INTO order_details VALUES (10861, 62, 49.2999992, 3, 0); +INSERT INTO order_details VALUES (10862, 11, 21, 25, 0); +INSERT INTO order_details VALUES (10862, 52, 7, 8, 0); +INSERT INTO order_details VALUES (10863, 1, 18, 20, 0.150000006); +INSERT INTO order_details VALUES (10863, 58, 13.25, 12, 0.150000006); +INSERT INTO order_details VALUES (10864, 35, 18, 4, 0); +INSERT INTO order_details VALUES (10864, 67, 14, 15, 0); +INSERT INTO order_details VALUES (10865, 38, 263.5, 60, 0.0500000007); +INSERT INTO order_details VALUES (10865, 39, 18, 80, 0.0500000007); +INSERT INTO order_details VALUES (10866, 2, 19, 21, 0.25); +INSERT INTO order_details VALUES (10866, 24, 4.5, 6, 0.25); +INSERT INTO order_details VALUES (10866, 30, 25.8899994, 40, 0.25); +INSERT INTO order_details VALUES (10867, 53, 32.7999992, 3, 0); +INSERT INTO order_details VALUES (10868, 26, 31.2299995, 20, 0); +INSERT INTO order_details VALUES (10868, 35, 18, 30, 0); +INSERT INTO order_details VALUES (10868, 49, 20, 42, 0.100000001); +INSERT INTO order_details VALUES (10869, 1, 18, 40, 0); +INSERT INTO order_details VALUES (10869, 11, 21, 10, 0); +INSERT INTO order_details VALUES (10869, 23, 9, 50, 0); +INSERT INTO order_details VALUES (10869, 68, 12.5, 20, 0); +INSERT INTO order_details VALUES (10870, 35, 18, 3, 0); +INSERT INTO order_details VALUES (10870, 51, 53, 2, 0); +INSERT INTO order_details VALUES (10871, 6, 25, 50, 0.0500000007); +INSERT INTO order_details VALUES (10871, 16, 17.4500008, 12, 0.0500000007); +INSERT INTO order_details VALUES (10871, 17, 39, 16, 0.0500000007); +INSERT INTO order_details VALUES (10872, 55, 24, 10, 0.0500000007); +INSERT INTO order_details VALUES (10872, 62, 49.2999992, 20, 0.0500000007); +INSERT INTO order_details VALUES (10872, 64, 33.25, 15, 0.0500000007); +INSERT INTO order_details VALUES (10872, 65, 21.0499992, 21, 0.0500000007); +INSERT INTO order_details VALUES (10873, 21, 10, 20, 0); +INSERT INTO order_details VALUES (10873, 28, 45.5999985, 3, 0); +INSERT INTO order_details VALUES (10874, 10, 31, 10, 0); +INSERT INTO order_details VALUES (10875, 19, 9.19999981, 25, 0); +INSERT INTO order_details VALUES (10875, 47, 9.5, 21, 0.100000001); +INSERT INTO order_details VALUES (10875, 49, 20, 15, 0); +INSERT INTO order_details VALUES (10876, 46, 12, 21, 0); +INSERT INTO order_details VALUES (10876, 64, 33.25, 20, 0); +INSERT INTO order_details VALUES (10877, 16, 17.4500008, 30, 0.25); +INSERT INTO order_details VALUES (10877, 18, 62.5, 25, 0); +INSERT INTO order_details VALUES (10878, 20, 81, 20, 0.0500000007); +INSERT INTO order_details VALUES (10879, 40, 18.3999996, 12, 0); +INSERT INTO order_details VALUES (10879, 65, 21.0499992, 10, 0); +INSERT INTO order_details VALUES (10879, 76, 18, 10, 0); +INSERT INTO order_details VALUES (10880, 23, 9, 30, 0.200000003); +INSERT INTO order_details VALUES (10880, 61, 28.5, 30, 0.200000003); +INSERT INTO order_details VALUES (10880, 70, 15, 50, 0.200000003); +INSERT INTO order_details VALUES (10881, 73, 15, 10, 0); +INSERT INTO order_details VALUES (10882, 42, 14, 25, 0); +INSERT INTO order_details VALUES (10882, 49, 20, 20, 0.150000006); +INSERT INTO order_details VALUES (10882, 54, 7.44999981, 32, 0.150000006); +INSERT INTO order_details VALUES (10883, 24, 4.5, 8, 0); +INSERT INTO order_details VALUES (10884, 21, 10, 40, 0.0500000007); +INSERT INTO order_details VALUES (10884, 56, 38, 21, 0.0500000007); +INSERT INTO order_details VALUES (10884, 65, 21.0499992, 12, 0.0500000007); +INSERT INTO order_details VALUES (10885, 2, 19, 20, 0); +INSERT INTO order_details VALUES (10885, 24, 4.5, 12, 0); +INSERT INTO order_details VALUES (10885, 70, 15, 30, 0); +INSERT INTO order_details VALUES (10885, 77, 13, 25, 0); +INSERT INTO order_details VALUES (10886, 10, 31, 70, 0); +INSERT INTO order_details VALUES (10886, 31, 12.5, 35, 0); +INSERT INTO order_details VALUES (10886, 77, 13, 40, 0); +INSERT INTO order_details VALUES (10887, 25, 14, 5, 0); +INSERT INTO order_details VALUES (10888, 2, 19, 20, 0); +INSERT INTO order_details VALUES (10888, 68, 12.5, 18, 0); +INSERT INTO order_details VALUES (10889, 11, 21, 40, 0); +INSERT INTO order_details VALUES (10889, 38, 263.5, 40, 0); +INSERT INTO order_details VALUES (10890, 17, 39, 15, 0); +INSERT INTO order_details VALUES (10890, 34, 14, 10, 0); +INSERT INTO order_details VALUES (10890, 41, 9.64999962, 14, 0); +INSERT INTO order_details VALUES (10891, 30, 25.8899994, 15, 0.0500000007); +INSERT INTO order_details VALUES (10892, 59, 55, 40, 0.0500000007); +INSERT INTO order_details VALUES (10893, 8, 40, 30, 0); +INSERT INTO order_details VALUES (10893, 24, 4.5, 10, 0); +INSERT INTO order_details VALUES (10893, 29, 123.790001, 24, 0); +INSERT INTO order_details VALUES (10893, 30, 25.8899994, 35, 0); +INSERT INTO order_details VALUES (10893, 36, 19, 20, 0); +INSERT INTO order_details VALUES (10894, 13, 6, 28, 0.0500000007); +INSERT INTO order_details VALUES (10894, 69, 36, 50, 0.0500000007); +INSERT INTO order_details VALUES (10894, 75, 7.75, 120, 0.0500000007); +INSERT INTO order_details VALUES (10895, 24, 4.5, 110, 0); +INSERT INTO order_details VALUES (10895, 39, 18, 45, 0); +INSERT INTO order_details VALUES (10895, 40, 18.3999996, 91, 0); +INSERT INTO order_details VALUES (10895, 60, 34, 100, 0); +INSERT INTO order_details VALUES (10896, 45, 9.5, 15, 0); +INSERT INTO order_details VALUES (10896, 56, 38, 16, 0); +INSERT INTO order_details VALUES (10897, 29, 123.790001, 80, 0); +INSERT INTO order_details VALUES (10897, 30, 25.8899994, 36, 0); +INSERT INTO order_details VALUES (10898, 13, 6, 5, 0); +INSERT INTO order_details VALUES (10899, 39, 18, 8, 0.150000006); +INSERT INTO order_details VALUES (10900, 70, 15, 3, 0.25); +INSERT INTO order_details VALUES (10901, 41, 9.64999962, 30, 0); +INSERT INTO order_details VALUES (10901, 71, 21.5, 30, 0); +INSERT INTO order_details VALUES (10902, 55, 24, 30, 0.150000006); +INSERT INTO order_details VALUES (10902, 62, 49.2999992, 6, 0.150000006); +INSERT INTO order_details VALUES (10903, 13, 6, 40, 0); +INSERT INTO order_details VALUES (10903, 65, 21.0499992, 21, 0); +INSERT INTO order_details VALUES (10903, 68, 12.5, 20, 0); +INSERT INTO order_details VALUES (10904, 58, 13.25, 15, 0); +INSERT INTO order_details VALUES (10904, 62, 49.2999992, 35, 0); +INSERT INTO order_details VALUES (10905, 1, 18, 20, 0.0500000007); +INSERT INTO order_details VALUES (10906, 61, 28.5, 15, 0); +INSERT INTO order_details VALUES (10907, 75, 7.75, 14, 0); +INSERT INTO order_details VALUES (10908, 7, 30, 20, 0.0500000007); +INSERT INTO order_details VALUES (10908, 52, 7, 14, 0.0500000007); +INSERT INTO order_details VALUES (10909, 7, 30, 12, 0); +INSERT INTO order_details VALUES (10909, 16, 17.4500008, 15, 0); +INSERT INTO order_details VALUES (10909, 41, 9.64999962, 5, 0); +INSERT INTO order_details VALUES (10910, 19, 9.19999981, 12, 0); +INSERT INTO order_details VALUES (10910, 49, 20, 10, 0); +INSERT INTO order_details VALUES (10910, 61, 28.5, 5, 0); +INSERT INTO order_details VALUES (10911, 1, 18, 10, 0); +INSERT INTO order_details VALUES (10911, 17, 39, 12, 0); +INSERT INTO order_details VALUES (10911, 67, 14, 15, 0); +INSERT INTO order_details VALUES (10912, 11, 21, 40, 0.25); +INSERT INTO order_details VALUES (10912, 29, 123.790001, 60, 0.25); +INSERT INTO order_details VALUES (10913, 4, 22, 30, 0.25); +INSERT INTO order_details VALUES (10913, 33, 2.5, 40, 0.25); +INSERT INTO order_details VALUES (10913, 58, 13.25, 15, 0); +INSERT INTO order_details VALUES (10914, 71, 21.5, 25, 0); +INSERT INTO order_details VALUES (10915, 17, 39, 10, 0); +INSERT INTO order_details VALUES (10915, 33, 2.5, 30, 0); +INSERT INTO order_details VALUES (10915, 54, 7.44999981, 10, 0); +INSERT INTO order_details VALUES (10916, 16, 17.4500008, 6, 0); +INSERT INTO order_details VALUES (10916, 32, 32, 6, 0); +INSERT INTO order_details VALUES (10916, 57, 19.5, 20, 0); +INSERT INTO order_details VALUES (10917, 30, 25.8899994, 1, 0); +INSERT INTO order_details VALUES (10917, 60, 34, 10, 0); +INSERT INTO order_details VALUES (10918, 1, 18, 60, 0.25); +INSERT INTO order_details VALUES (10918, 60, 34, 25, 0.25); +INSERT INTO order_details VALUES (10919, 16, 17.4500008, 24, 0); +INSERT INTO order_details VALUES (10919, 25, 14, 24, 0); +INSERT INTO order_details VALUES (10919, 40, 18.3999996, 20, 0); +INSERT INTO order_details VALUES (10920, 50, 16.25, 24, 0); +INSERT INTO order_details VALUES (10921, 35, 18, 10, 0); +INSERT INTO order_details VALUES (10921, 63, 43.9000015, 40, 0); +INSERT INTO order_details VALUES (10922, 17, 39, 15, 0); +INSERT INTO order_details VALUES (10922, 24, 4.5, 35, 0); +INSERT INTO order_details VALUES (10923, 42, 14, 10, 0.200000003); +INSERT INTO order_details VALUES (10923, 43, 46, 10, 0.200000003); +INSERT INTO order_details VALUES (10923, 67, 14, 24, 0.200000003); +INSERT INTO order_details VALUES (10924, 10, 31, 20, 0.100000001); +INSERT INTO order_details VALUES (10924, 28, 45.5999985, 30, 0.100000001); +INSERT INTO order_details VALUES (10924, 75, 7.75, 6, 0); +INSERT INTO order_details VALUES (10925, 36, 19, 25, 0.150000006); +INSERT INTO order_details VALUES (10925, 52, 7, 12, 0.150000006); +INSERT INTO order_details VALUES (10926, 11, 21, 2, 0); +INSERT INTO order_details VALUES (10926, 13, 6, 10, 0); +INSERT INTO order_details VALUES (10926, 19, 9.19999981, 7, 0); +INSERT INTO order_details VALUES (10926, 72, 34.7999992, 10, 0); +INSERT INTO order_details VALUES (10927, 20, 81, 5, 0); +INSERT INTO order_details VALUES (10927, 52, 7, 5, 0); +INSERT INTO order_details VALUES (10927, 76, 18, 20, 0); +INSERT INTO order_details VALUES (10928, 47, 9.5, 5, 0); +INSERT INTO order_details VALUES (10928, 76, 18, 5, 0); +INSERT INTO order_details VALUES (10929, 21, 10, 60, 0); +INSERT INTO order_details VALUES (10929, 75, 7.75, 49, 0); +INSERT INTO order_details VALUES (10929, 77, 13, 15, 0); +INSERT INTO order_details VALUES (10930, 21, 10, 36, 0); +INSERT INTO order_details VALUES (10930, 27, 43.9000015, 25, 0); +INSERT INTO order_details VALUES (10930, 55, 24, 25, 0.200000003); +INSERT INTO order_details VALUES (10930, 58, 13.25, 30, 0.200000003); +INSERT INTO order_details VALUES (10931, 13, 6, 42, 0.150000006); +INSERT INTO order_details VALUES (10931, 57, 19.5, 30, 0); +INSERT INTO order_details VALUES (10932, 16, 17.4500008, 30, 0.100000001); +INSERT INTO order_details VALUES (10932, 62, 49.2999992, 14, 0.100000001); +INSERT INTO order_details VALUES (10932, 72, 34.7999992, 16, 0); +INSERT INTO order_details VALUES (10932, 75, 7.75, 20, 0.100000001); +INSERT INTO order_details VALUES (10933, 53, 32.7999992, 2, 0); +INSERT INTO order_details VALUES (10933, 61, 28.5, 30, 0); +INSERT INTO order_details VALUES (10934, 6, 25, 20, 0); +INSERT INTO order_details VALUES (10935, 1, 18, 21, 0); +INSERT INTO order_details VALUES (10935, 18, 62.5, 4, 0.25); +INSERT INTO order_details VALUES (10935, 23, 9, 8, 0.25); +INSERT INTO order_details VALUES (10936, 36, 19, 30, 0.200000003); +INSERT INTO order_details VALUES (10937, 28, 45.5999985, 8, 0); +INSERT INTO order_details VALUES (10937, 34, 14, 20, 0); +INSERT INTO order_details VALUES (10938, 13, 6, 20, 0.25); +INSERT INTO order_details VALUES (10938, 43, 46, 24, 0.25); +INSERT INTO order_details VALUES (10938, 60, 34, 49, 0.25); +INSERT INTO order_details VALUES (10938, 71, 21.5, 35, 0.25); +INSERT INTO order_details VALUES (10939, 2, 19, 10, 0.150000006); +INSERT INTO order_details VALUES (10939, 67, 14, 40, 0.150000006); +INSERT INTO order_details VALUES (10940, 7, 30, 8, 0); +INSERT INTO order_details VALUES (10940, 13, 6, 20, 0); +INSERT INTO order_details VALUES (10941, 31, 12.5, 44, 0.25); +INSERT INTO order_details VALUES (10941, 62, 49.2999992, 30, 0.25); +INSERT INTO order_details VALUES (10941, 68, 12.5, 80, 0.25); +INSERT INTO order_details VALUES (10941, 72, 34.7999992, 50, 0); +INSERT INTO order_details VALUES (10942, 49, 20, 28, 0); +INSERT INTO order_details VALUES (10943, 13, 6, 15, 0); +INSERT INTO order_details VALUES (10943, 22, 21, 21, 0); +INSERT INTO order_details VALUES (10943, 46, 12, 15, 0); +INSERT INTO order_details VALUES (10944, 11, 21, 5, 0.25); +INSERT INTO order_details VALUES (10944, 44, 19.4500008, 18, 0.25); +INSERT INTO order_details VALUES (10944, 56, 38, 18, 0); +INSERT INTO order_details VALUES (10945, 13, 6, 20, 0); +INSERT INTO order_details VALUES (10945, 31, 12.5, 10, 0); +INSERT INTO order_details VALUES (10946, 10, 31, 25, 0); +INSERT INTO order_details VALUES (10946, 24, 4.5, 25, 0); +INSERT INTO order_details VALUES (10946, 77, 13, 40, 0); +INSERT INTO order_details VALUES (10947, 59, 55, 4, 0); +INSERT INTO order_details VALUES (10948, 50, 16.25, 9, 0); +INSERT INTO order_details VALUES (10948, 51, 53, 40, 0); +INSERT INTO order_details VALUES (10948, 55, 24, 4, 0); +INSERT INTO order_details VALUES (10949, 6, 25, 12, 0); +INSERT INTO order_details VALUES (10949, 10, 31, 30, 0); +INSERT INTO order_details VALUES (10949, 17, 39, 6, 0); +INSERT INTO order_details VALUES (10949, 62, 49.2999992, 60, 0); +INSERT INTO order_details VALUES (10950, 4, 22, 5, 0); +INSERT INTO order_details VALUES (10951, 33, 2.5, 15, 0.0500000007); +INSERT INTO order_details VALUES (10951, 41, 9.64999962, 6, 0.0500000007); +INSERT INTO order_details VALUES (10951, 75, 7.75, 50, 0.0500000007); +INSERT INTO order_details VALUES (10952, 6, 25, 16, 0.0500000007); +INSERT INTO order_details VALUES (10952, 28, 45.5999985, 2, 0); +INSERT INTO order_details VALUES (10953, 20, 81, 50, 0.0500000007); +INSERT INTO order_details VALUES (10953, 31, 12.5, 50, 0.0500000007); +INSERT INTO order_details VALUES (10954, 16, 17.4500008, 28, 0.150000006); +INSERT INTO order_details VALUES (10954, 31, 12.5, 25, 0.150000006); +INSERT INTO order_details VALUES (10954, 45, 9.5, 30, 0); +INSERT INTO order_details VALUES (10954, 60, 34, 24, 0.150000006); +INSERT INTO order_details VALUES (10955, 75, 7.75, 12, 0.200000003); +INSERT INTO order_details VALUES (10956, 21, 10, 12, 0); +INSERT INTO order_details VALUES (10956, 47, 9.5, 14, 0); +INSERT INTO order_details VALUES (10956, 51, 53, 8, 0); +INSERT INTO order_details VALUES (10957, 30, 25.8899994, 30, 0); +INSERT INTO order_details VALUES (10957, 35, 18, 40, 0); +INSERT INTO order_details VALUES (10957, 64, 33.25, 8, 0); +INSERT INTO order_details VALUES (10958, 5, 21.3500004, 20, 0); +INSERT INTO order_details VALUES (10958, 7, 30, 6, 0); +INSERT INTO order_details VALUES (10958, 72, 34.7999992, 5, 0); +INSERT INTO order_details VALUES (10959, 75, 7.75, 20, 0.150000006); +INSERT INTO order_details VALUES (10960, 24, 4.5, 10, 0.25); +INSERT INTO order_details VALUES (10960, 41, 9.64999962, 24, 0); +INSERT INTO order_details VALUES (10961, 52, 7, 6, 0.0500000007); +INSERT INTO order_details VALUES (10961, 76, 18, 60, 0); +INSERT INTO order_details VALUES (10962, 7, 30, 45, 0); +INSERT INTO order_details VALUES (10962, 13, 6, 77, 0); +INSERT INTO order_details VALUES (10962, 53, 32.7999992, 20, 0); +INSERT INTO order_details VALUES (10962, 69, 36, 9, 0); +INSERT INTO order_details VALUES (10962, 76, 18, 44, 0); +INSERT INTO order_details VALUES (10963, 60, 34, 2, 0.150000006); +INSERT INTO order_details VALUES (10964, 18, 62.5, 6, 0); +INSERT INTO order_details VALUES (10964, 38, 263.5, 5, 0); +INSERT INTO order_details VALUES (10964, 69, 36, 10, 0); +INSERT INTO order_details VALUES (10965, 51, 53, 16, 0); +INSERT INTO order_details VALUES (10966, 37, 26, 8, 0); +INSERT INTO order_details VALUES (10966, 56, 38, 12, 0.150000006); +INSERT INTO order_details VALUES (10966, 62, 49.2999992, 12, 0.150000006); +INSERT INTO order_details VALUES (10967, 19, 9.19999981, 12, 0); +INSERT INTO order_details VALUES (10967, 49, 20, 40, 0); +INSERT INTO order_details VALUES (10968, 12, 38, 30, 0); +INSERT INTO order_details VALUES (10968, 24, 4.5, 30, 0); +INSERT INTO order_details VALUES (10968, 64, 33.25, 4, 0); +INSERT INTO order_details VALUES (10969, 46, 12, 9, 0); +INSERT INTO order_details VALUES (10970, 52, 7, 40, 0.200000003); +INSERT INTO order_details VALUES (10971, 29, 123.790001, 14, 0); +INSERT INTO order_details VALUES (10972, 17, 39, 6, 0); +INSERT INTO order_details VALUES (10972, 33, 2.5, 7, 0); +INSERT INTO order_details VALUES (10973, 26, 31.2299995, 5, 0); +INSERT INTO order_details VALUES (10973, 41, 9.64999962, 6, 0); +INSERT INTO order_details VALUES (10973, 75, 7.75, 10, 0); +INSERT INTO order_details VALUES (10974, 63, 43.9000015, 10, 0); +INSERT INTO order_details VALUES (10975, 8, 40, 16, 0); +INSERT INTO order_details VALUES (10975, 75, 7.75, 10, 0); +INSERT INTO order_details VALUES (10976, 28, 45.5999985, 20, 0); +INSERT INTO order_details VALUES (10977, 39, 18, 30, 0); +INSERT INTO order_details VALUES (10977, 47, 9.5, 30, 0); +INSERT INTO order_details VALUES (10977, 51, 53, 10, 0); +INSERT INTO order_details VALUES (10977, 63, 43.9000015, 20, 0); +INSERT INTO order_details VALUES (10978, 8, 40, 20, 0.150000006); +INSERT INTO order_details VALUES (10978, 21, 10, 40, 0.150000006); +INSERT INTO order_details VALUES (10978, 40, 18.3999996, 10, 0); +INSERT INTO order_details VALUES (10978, 44, 19.4500008, 6, 0.150000006); +INSERT INTO order_details VALUES (10979, 7, 30, 18, 0); +INSERT INTO order_details VALUES (10979, 12, 38, 20, 0); +INSERT INTO order_details VALUES (10979, 24, 4.5, 80, 0); +INSERT INTO order_details VALUES (10979, 27, 43.9000015, 30, 0); +INSERT INTO order_details VALUES (10979, 31, 12.5, 24, 0); +INSERT INTO order_details VALUES (10979, 63, 43.9000015, 35, 0); +INSERT INTO order_details VALUES (10980, 75, 7.75, 40, 0.200000003); +INSERT INTO order_details VALUES (10981, 38, 263.5, 60, 0); +INSERT INTO order_details VALUES (10982, 7, 30, 20, 0); +INSERT INTO order_details VALUES (10982, 43, 46, 9, 0); +INSERT INTO order_details VALUES (10983, 13, 6, 84, 0.150000006); +INSERT INTO order_details VALUES (10983, 57, 19.5, 15, 0); +INSERT INTO order_details VALUES (10984, 16, 17.4500008, 55, 0); +INSERT INTO order_details VALUES (10984, 24, 4.5, 20, 0); +INSERT INTO order_details VALUES (10984, 36, 19, 40, 0); +INSERT INTO order_details VALUES (10985, 16, 17.4500008, 36, 0.100000001); +INSERT INTO order_details VALUES (10985, 18, 62.5, 8, 0.100000001); +INSERT INTO order_details VALUES (10985, 32, 32, 35, 0.100000001); +INSERT INTO order_details VALUES (10986, 11, 21, 30, 0); +INSERT INTO order_details VALUES (10986, 20, 81, 15, 0); +INSERT INTO order_details VALUES (10986, 76, 18, 10, 0); +INSERT INTO order_details VALUES (10986, 77, 13, 15, 0); +INSERT INTO order_details VALUES (10987, 7, 30, 60, 0); +INSERT INTO order_details VALUES (10987, 43, 46, 6, 0); +INSERT INTO order_details VALUES (10987, 72, 34.7999992, 20, 0); +INSERT INTO order_details VALUES (10988, 7, 30, 60, 0); +INSERT INTO order_details VALUES (10988, 62, 49.2999992, 40, 0.100000001); +INSERT INTO order_details VALUES (10989, 6, 25, 40, 0); +INSERT INTO order_details VALUES (10989, 11, 21, 15, 0); +INSERT INTO order_details VALUES (10989, 41, 9.64999962, 4, 0); +INSERT INTO order_details VALUES (10990, 21, 10, 65, 0); +INSERT INTO order_details VALUES (10990, 34, 14, 60, 0.150000006); +INSERT INTO order_details VALUES (10990, 55, 24, 65, 0.150000006); +INSERT INTO order_details VALUES (10990, 61, 28.5, 66, 0.150000006); +INSERT INTO order_details VALUES (10991, 2, 19, 50, 0.200000003); +INSERT INTO order_details VALUES (10991, 70, 15, 20, 0.200000003); +INSERT INTO order_details VALUES (10991, 76, 18, 90, 0.200000003); +INSERT INTO order_details VALUES (10992, 72, 34.7999992, 2, 0); +INSERT INTO order_details VALUES (10993, 29, 123.790001, 50, 0.25); +INSERT INTO order_details VALUES (10993, 41, 9.64999962, 35, 0.25); +INSERT INTO order_details VALUES (10994, 59, 55, 18, 0.0500000007); +INSERT INTO order_details VALUES (10995, 51, 53, 20, 0); +INSERT INTO order_details VALUES (10995, 60, 34, 4, 0); +INSERT INTO order_details VALUES (10996, 42, 14, 40, 0); +INSERT INTO order_details VALUES (10997, 32, 32, 50, 0); +INSERT INTO order_details VALUES (10997, 46, 12, 20, 0.25); +INSERT INTO order_details VALUES (10997, 52, 7, 20, 0.25); +INSERT INTO order_details VALUES (10998, 24, 4.5, 12, 0); +INSERT INTO order_details VALUES (10998, 61, 28.5, 7, 0); +INSERT INTO order_details VALUES (10998, 74, 10, 20, 0); +INSERT INTO order_details VALUES (10998, 75, 7.75, 30, 0); +INSERT INTO order_details VALUES (10999, 41, 9.64999962, 20, 0.0500000007); +INSERT INTO order_details VALUES (10999, 51, 53, 15, 0.0500000007); +INSERT INTO order_details VALUES (10999, 77, 13, 21, 0.0500000007); +INSERT INTO order_details VALUES (11000, 4, 22, 25, 0.25); +INSERT INTO order_details VALUES (11000, 24, 4.5, 30, 0.25); +INSERT INTO order_details VALUES (11000, 77, 13, 30, 0); +INSERT INTO order_details VALUES (11001, 7, 30, 60, 0); +INSERT INTO order_details VALUES (11001, 22, 21, 25, 0); +INSERT INTO order_details VALUES (11001, 46, 12, 25, 0); +INSERT INTO order_details VALUES (11001, 55, 24, 6, 0); +INSERT INTO order_details VALUES (11002, 13, 6, 56, 0); +INSERT INTO order_details VALUES (11002, 35, 18, 15, 0.150000006); +INSERT INTO order_details VALUES (11002, 42, 14, 24, 0.150000006); +INSERT INTO order_details VALUES (11002, 55, 24, 40, 0); +INSERT INTO order_details VALUES (11003, 1, 18, 4, 0); +INSERT INTO order_details VALUES (11003, 40, 18.3999996, 10, 0); +INSERT INTO order_details VALUES (11003, 52, 7, 10, 0); +INSERT INTO order_details VALUES (11004, 26, 31.2299995, 6, 0); +INSERT INTO order_details VALUES (11004, 76, 18, 6, 0); +INSERT INTO order_details VALUES (11005, 1, 18, 2, 0); +INSERT INTO order_details VALUES (11005, 59, 55, 10, 0); +INSERT INTO order_details VALUES (11006, 1, 18, 8, 0); +INSERT INTO order_details VALUES (11006, 29, 123.790001, 2, 0.25); +INSERT INTO order_details VALUES (11007, 8, 40, 30, 0); +INSERT INTO order_details VALUES (11007, 29, 123.790001, 10, 0); +INSERT INTO order_details VALUES (11007, 42, 14, 14, 0); +INSERT INTO order_details VALUES (11008, 28, 45.5999985, 70, 0.0500000007); +INSERT INTO order_details VALUES (11008, 34, 14, 90, 0.0500000007); +INSERT INTO order_details VALUES (11008, 71, 21.5, 21, 0); +INSERT INTO order_details VALUES (11009, 24, 4.5, 12, 0); +INSERT INTO order_details VALUES (11009, 36, 19, 18, 0.25); +INSERT INTO order_details VALUES (11009, 60, 34, 9, 0); +INSERT INTO order_details VALUES (11010, 7, 30, 20, 0); +INSERT INTO order_details VALUES (11010, 24, 4.5, 10, 0); +INSERT INTO order_details VALUES (11011, 58, 13.25, 40, 0.0500000007); +INSERT INTO order_details VALUES (11011, 71, 21.5, 20, 0); +INSERT INTO order_details VALUES (11012, 19, 9.19999981, 50, 0.0500000007); +INSERT INTO order_details VALUES (11012, 60, 34, 36, 0.0500000007); +INSERT INTO order_details VALUES (11012, 71, 21.5, 60, 0.0500000007); +INSERT INTO order_details VALUES (11013, 23, 9, 10, 0); +INSERT INTO order_details VALUES (11013, 42, 14, 4, 0); +INSERT INTO order_details VALUES (11013, 45, 9.5, 20, 0); +INSERT INTO order_details VALUES (11013, 68, 12.5, 2, 0); +INSERT INTO order_details VALUES (11014, 41, 9.64999962, 28, 0.100000001); +INSERT INTO order_details VALUES (11015, 30, 25.8899994, 15, 0); +INSERT INTO order_details VALUES (11015, 77, 13, 18, 0); +INSERT INTO order_details VALUES (11016, 31, 12.5, 15, 0); +INSERT INTO order_details VALUES (11016, 36, 19, 16, 0); +INSERT INTO order_details VALUES (11017, 3, 10, 25, 0); +INSERT INTO order_details VALUES (11017, 59, 55, 110, 0); +INSERT INTO order_details VALUES (11017, 70, 15, 30, 0); +INSERT INTO order_details VALUES (11018, 12, 38, 20, 0); +INSERT INTO order_details VALUES (11018, 18, 62.5, 10, 0); +INSERT INTO order_details VALUES (11018, 56, 38, 5, 0); +INSERT INTO order_details VALUES (11019, 46, 12, 3, 0); +INSERT INTO order_details VALUES (11019, 49, 20, 2, 0); +INSERT INTO order_details VALUES (11020, 10, 31, 24, 0.150000006); +INSERT INTO order_details VALUES (11021, 2, 19, 11, 0.25); +INSERT INTO order_details VALUES (11021, 20, 81, 15, 0); +INSERT INTO order_details VALUES (11021, 26, 31.2299995, 63, 0); +INSERT INTO order_details VALUES (11021, 51, 53, 44, 0.25); +INSERT INTO order_details VALUES (11021, 72, 34.7999992, 35, 0); +INSERT INTO order_details VALUES (11022, 19, 9.19999981, 35, 0); +INSERT INTO order_details VALUES (11022, 69, 36, 30, 0); +INSERT INTO order_details VALUES (11023, 7, 30, 4, 0); +INSERT INTO order_details VALUES (11023, 43, 46, 30, 0); +INSERT INTO order_details VALUES (11024, 26, 31.2299995, 12, 0); +INSERT INTO order_details VALUES (11024, 33, 2.5, 30, 0); +INSERT INTO order_details VALUES (11024, 65, 21.0499992, 21, 0); +INSERT INTO order_details VALUES (11024, 71, 21.5, 50, 0); +INSERT INTO order_details VALUES (11025, 1, 18, 10, 0.100000001); +INSERT INTO order_details VALUES (11025, 13, 6, 20, 0.100000001); +INSERT INTO order_details VALUES (11026, 18, 62.5, 8, 0); +INSERT INTO order_details VALUES (11026, 51, 53, 10, 0); +INSERT INTO order_details VALUES (11027, 24, 4.5, 30, 0.25); +INSERT INTO order_details VALUES (11027, 62, 49.2999992, 21, 0.25); +INSERT INTO order_details VALUES (11028, 55, 24, 35, 0); +INSERT INTO order_details VALUES (11028, 59, 55, 24, 0); +INSERT INTO order_details VALUES (11029, 56, 38, 20, 0); +INSERT INTO order_details VALUES (11029, 63, 43.9000015, 12, 0); +INSERT INTO order_details VALUES (11030, 2, 19, 100, 0.25); +INSERT INTO order_details VALUES (11030, 5, 21.3500004, 70, 0); +INSERT INTO order_details VALUES (11030, 29, 123.790001, 60, 0.25); +INSERT INTO order_details VALUES (11030, 59, 55, 100, 0.25); +INSERT INTO order_details VALUES (11031, 1, 18, 45, 0); +INSERT INTO order_details VALUES (11031, 13, 6, 80, 0); +INSERT INTO order_details VALUES (11031, 24, 4.5, 21, 0); +INSERT INTO order_details VALUES (11031, 64, 33.25, 20, 0); +INSERT INTO order_details VALUES (11031, 71, 21.5, 16, 0); +INSERT INTO order_details VALUES (11032, 36, 19, 35, 0); +INSERT INTO order_details VALUES (11032, 38, 263.5, 25, 0); +INSERT INTO order_details VALUES (11032, 59, 55, 30, 0); +INSERT INTO order_details VALUES (11033, 53, 32.7999992, 70, 0.100000001); +INSERT INTO order_details VALUES (11033, 69, 36, 36, 0.100000001); +INSERT INTO order_details VALUES (11034, 21, 10, 15, 0.100000001); +INSERT INTO order_details VALUES (11034, 44, 19.4500008, 12, 0); +INSERT INTO order_details VALUES (11034, 61, 28.5, 6, 0); +INSERT INTO order_details VALUES (11035, 1, 18, 10, 0); +INSERT INTO order_details VALUES (11035, 35, 18, 60, 0); +INSERT INTO order_details VALUES (11035, 42, 14, 30, 0); +INSERT INTO order_details VALUES (11035, 54, 7.44999981, 10, 0); +INSERT INTO order_details VALUES (11036, 13, 6, 7, 0); +INSERT INTO order_details VALUES (11036, 59, 55, 30, 0); +INSERT INTO order_details VALUES (11037, 70, 15, 4, 0); +INSERT INTO order_details VALUES (11038, 40, 18.3999996, 5, 0.200000003); +INSERT INTO order_details VALUES (11038, 52, 7, 2, 0); +INSERT INTO order_details VALUES (11038, 71, 21.5, 30, 0); +INSERT INTO order_details VALUES (11039, 28, 45.5999985, 20, 0); +INSERT INTO order_details VALUES (11039, 35, 18, 24, 0); +INSERT INTO order_details VALUES (11039, 49, 20, 60, 0); +INSERT INTO order_details VALUES (11039, 57, 19.5, 28, 0); +INSERT INTO order_details VALUES (11040, 21, 10, 20, 0); +INSERT INTO order_details VALUES (11041, 2, 19, 30, 0.200000003); +INSERT INTO order_details VALUES (11041, 63, 43.9000015, 30, 0); +INSERT INTO order_details VALUES (11042, 44, 19.4500008, 15, 0); +INSERT INTO order_details VALUES (11042, 61, 28.5, 4, 0); +INSERT INTO order_details VALUES (11043, 11, 21, 10, 0); +INSERT INTO order_details VALUES (11044, 62, 49.2999992, 12, 0); +INSERT INTO order_details VALUES (11045, 33, 2.5, 15, 0); +INSERT INTO order_details VALUES (11045, 51, 53, 24, 0); +INSERT INTO order_details VALUES (11046, 12, 38, 20, 0.0500000007); +INSERT INTO order_details VALUES (11046, 32, 32, 15, 0.0500000007); +INSERT INTO order_details VALUES (11046, 35, 18, 18, 0.0500000007); +INSERT INTO order_details VALUES (11047, 1, 18, 25, 0.25); +INSERT INTO order_details VALUES (11047, 5, 21.3500004, 30, 0.25); +INSERT INTO order_details VALUES (11048, 68, 12.5, 42, 0); +INSERT INTO order_details VALUES (11049, 2, 19, 10, 0.200000003); +INSERT INTO order_details VALUES (11049, 12, 38, 4, 0.200000003); +INSERT INTO order_details VALUES (11050, 76, 18, 50, 0.100000001); +INSERT INTO order_details VALUES (11051, 24, 4.5, 10, 0.200000003); +INSERT INTO order_details VALUES (11052, 43, 46, 30, 0.200000003); +INSERT INTO order_details VALUES (11052, 61, 28.5, 10, 0.200000003); +INSERT INTO order_details VALUES (11053, 18, 62.5, 35, 0.200000003); +INSERT INTO order_details VALUES (11053, 32, 32, 20, 0); +INSERT INTO order_details VALUES (11053, 64, 33.25, 25, 0.200000003); +INSERT INTO order_details VALUES (11054, 33, 2.5, 10, 0); +INSERT INTO order_details VALUES (11054, 67, 14, 20, 0); +INSERT INTO order_details VALUES (11055, 24, 4.5, 15, 0); +INSERT INTO order_details VALUES (11055, 25, 14, 15, 0); +INSERT INTO order_details VALUES (11055, 51, 53, 20, 0); +INSERT INTO order_details VALUES (11055, 57, 19.5, 20, 0); +INSERT INTO order_details VALUES (11056, 7, 30, 40, 0); +INSERT INTO order_details VALUES (11056, 55, 24, 35, 0); +INSERT INTO order_details VALUES (11056, 60, 34, 50, 0); +INSERT INTO order_details VALUES (11057, 70, 15, 3, 0); +INSERT INTO order_details VALUES (11058, 21, 10, 3, 0); +INSERT INTO order_details VALUES (11058, 60, 34, 21, 0); +INSERT INTO order_details VALUES (11058, 61, 28.5, 4, 0); +INSERT INTO order_details VALUES (11059, 13, 6, 30, 0); +INSERT INTO order_details VALUES (11059, 17, 39, 12, 0); +INSERT INTO order_details VALUES (11059, 60, 34, 35, 0); +INSERT INTO order_details VALUES (11060, 60, 34, 4, 0); +INSERT INTO order_details VALUES (11060, 77, 13, 10, 0); +INSERT INTO order_details VALUES (11061, 60, 34, 15, 0); +INSERT INTO order_details VALUES (11062, 53, 32.7999992, 10, 0.200000003); +INSERT INTO order_details VALUES (11062, 70, 15, 12, 0.200000003); +INSERT INTO order_details VALUES (11063, 34, 14, 30, 0); +INSERT INTO order_details VALUES (11063, 40, 18.3999996, 40, 0.100000001); +INSERT INTO order_details VALUES (11063, 41, 9.64999962, 30, 0.100000001); +INSERT INTO order_details VALUES (11064, 17, 39, 77, 0.100000001); +INSERT INTO order_details VALUES (11064, 41, 9.64999962, 12, 0); +INSERT INTO order_details VALUES (11064, 53, 32.7999992, 25, 0.100000001); +INSERT INTO order_details VALUES (11064, 55, 24, 4, 0.100000001); +INSERT INTO order_details VALUES (11064, 68, 12.5, 55, 0); +INSERT INTO order_details VALUES (11065, 30, 25.8899994, 4, 0.25); +INSERT INTO order_details VALUES (11065, 54, 7.44999981, 20, 0.25); +INSERT INTO order_details VALUES (11066, 16, 17.4500008, 3, 0); +INSERT INTO order_details VALUES (11066, 19, 9.19999981, 42, 0); +INSERT INTO order_details VALUES (11066, 34, 14, 35, 0); +INSERT INTO order_details VALUES (11067, 41, 9.64999962, 9, 0); +INSERT INTO order_details VALUES (11068, 28, 45.5999985, 8, 0.150000006); +INSERT INTO order_details VALUES (11068, 43, 46, 36, 0.150000006); +INSERT INTO order_details VALUES (11068, 77, 13, 28, 0.150000006); +INSERT INTO order_details VALUES (11069, 39, 18, 20, 0); +INSERT INTO order_details VALUES (11070, 1, 18, 40, 0.150000006); +INSERT INTO order_details VALUES (11070, 2, 19, 20, 0.150000006); +INSERT INTO order_details VALUES (11070, 16, 17.4500008, 30, 0.150000006); +INSERT INTO order_details VALUES (11070, 31, 12.5, 20, 0); +INSERT INTO order_details VALUES (11071, 7, 30, 15, 0.0500000007); +INSERT INTO order_details VALUES (11071, 13, 6, 10, 0.0500000007); +INSERT INTO order_details VALUES (11072, 2, 19, 8, 0); +INSERT INTO order_details VALUES (11072, 41, 9.64999962, 40, 0); +INSERT INTO order_details VALUES (11072, 50, 16.25, 22, 0); +INSERT INTO order_details VALUES (11072, 64, 33.25, 130, 0); +INSERT INTO order_details VALUES (11073, 11, 21, 10, 0); +INSERT INTO order_details VALUES (11073, 24, 4.5, 20, 0); +INSERT INTO order_details VALUES (11074, 16, 17.4500008, 14, 0.0500000007); +INSERT INTO order_details VALUES (11075, 2, 19, 10, 0.150000006); +INSERT INTO order_details VALUES (11075, 46, 12, 30, 0.150000006); +INSERT INTO order_details VALUES (11075, 76, 18, 2, 0.150000006); +INSERT INTO order_details VALUES (11076, 6, 25, 20, 0.25); +INSERT INTO order_details VALUES (11076, 14, 23.25, 20, 0.25); +INSERT INTO order_details VALUES (11076, 19, 9.19999981, 10, 0.25); +INSERT INTO order_details VALUES (11077, 2, 19, 24, 0.200000003); +INSERT INTO order_details VALUES (11077, 3, 10, 4, 0); +INSERT INTO order_details VALUES (11077, 4, 22, 1, 0); +INSERT INTO order_details VALUES (11077, 6, 25, 1, 0.0199999996); +INSERT INTO order_details VALUES (11077, 7, 30, 1, 0.0500000007); +INSERT INTO order_details VALUES (11077, 8, 40, 2, 0.100000001); +INSERT INTO order_details VALUES (11077, 10, 31, 1, 0); +INSERT INTO order_details VALUES (11077, 12, 38, 2, 0.0500000007); +INSERT INTO order_details VALUES (11077, 13, 6, 4, 0); +INSERT INTO order_details VALUES (11077, 14, 23.25, 1, 0.0299999993); +INSERT INTO order_details VALUES (11077, 16, 17.4500008, 2, 0.0299999993); +INSERT INTO order_details VALUES (11077, 20, 81, 1, 0.0399999991); +INSERT INTO order_details VALUES (11077, 23, 9, 2, 0); +INSERT INTO order_details VALUES (11077, 32, 32, 1, 0); +INSERT INTO order_details VALUES (11077, 39, 18, 2, 0.0500000007); +INSERT INTO order_details VALUES (11077, 41, 9.64999962, 3, 0); +INSERT INTO order_details VALUES (11077, 46, 12, 3, 0.0199999996); +INSERT INTO order_details VALUES (11077, 52, 7, 2, 0); +INSERT INTO order_details VALUES (11077, 55, 24, 2, 0); +INSERT INTO order_details VALUES (11077, 60, 34, 2, 0.0599999987); +INSERT INTO order_details VALUES (11077, 64, 33.25, 2, 0.0299999993); +INSERT INTO order_details VALUES (11077, 66, 17, 1, 0); +INSERT INTO order_details VALUES (11077, 73, 15, 2, 0.00999999978); +INSERT INTO order_details VALUES (11077, 75, 7.75, 4, 0); +INSERT INTO order_details VALUES (11077, 77, 13, 2, 0); + + +-- +-- Data for Name: orders; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO orders VALUES (10248, 'VINET', 5, '1996-07-04', '1996-08-01', '1996-07-16', 3, 32.3800011, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); +INSERT INTO orders VALUES (10249, 'TOMSP', 6, '1996-07-05', '1996-08-16', '1996-07-10', 1, 11.6099997, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); +INSERT INTO orders VALUES (10250, 'HANAR', 4, '1996-07-08', '1996-08-05', '1996-07-12', 2, 65.8300018, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10251, 'VICTE', 3, '1996-07-08', '1996-08-05', '1996-07-15', 1, 41.3400002, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10252, 'SUPRD', 4, '1996-07-09', '1996-08-06', '1996-07-11', 2, 51.2999992, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10253, 'HANAR', 3, '1996-07-10', '1996-07-24', '1996-07-16', 2, 58.1699982, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10254, 'CHOPS', 5, '1996-07-11', '1996-08-08', '1996-07-23', 2, 22.9799995, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); +INSERT INTO orders VALUES (10255, 'RICSU', 9, '1996-07-12', '1996-08-09', '1996-07-15', 3, 148.330002, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (10256, 'WELLI', 3, '1996-07-15', '1996-08-12', '1996-07-17', 2, 13.9700003, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10257, 'HILAA', 4, '1996-07-16', '1996-08-13', '1996-07-22', 3, 81.9100037, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10258, 'ERNSH', 1, '1996-07-17', '1996-08-14', '1996-07-23', 1, 140.509995, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10259, 'CENTC', 4, '1996-07-18', '1996-08-15', '1996-07-25', 3, 3.25, 'Centro comercial Moctezuma', 'Sierras de Granada 9993', 'México D.F.', NULL, '05022', 'Mexico'); +INSERT INTO orders VALUES (10260, 'OTTIK', 4, '1996-07-19', '1996-08-16', '1996-07-29', 1, 55.0900002, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (10261, 'QUEDE', 4, '1996-07-19', '1996-08-16', '1996-07-30', 2, 3.04999995, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10262, 'RATTC', 8, '1996-07-22', '1996-08-19', '1996-07-25', 3, 48.2900009, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10263, 'ERNSH', 9, '1996-07-23', '1996-08-20', '1996-07-31', 3, 146.059998, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10264, 'FOLKO', 6, '1996-07-24', '1996-08-21', '1996-08-23', 3, 3.67000008, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10265, 'BLONP', 2, '1996-07-25', '1996-08-22', '1996-08-12', 1, 55.2799988, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10266, 'WARTH', 3, '1996-07-26', '1996-09-06', '1996-07-31', 3, 25.7299995, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10267, 'FRANK', 4, '1996-07-29', '1996-08-26', '1996-08-06', 1, 208.580002, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10268, 'GROSR', 8, '1996-07-30', '1996-08-27', '1996-08-02', 3, 66.2900009, 'GROSELLA-Restaurante', '5ª Ave. Los Palos Grandes', 'Caracas', 'DF', '1081', 'Venezuela'); +INSERT INTO orders VALUES (10269, 'WHITC', 5, '1996-07-31', '1996-08-14', '1996-08-09', 1, 4.55999994, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10270, 'WARTH', 1, '1996-08-01', '1996-08-29', '1996-08-02', 1, 136.539993, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10271, 'SPLIR', 6, '1996-08-01', '1996-08-29', '1996-08-30', 2, 4.53999996, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10272, 'RATTC', 6, '1996-08-02', '1996-08-30', '1996-08-06', 2, 98.0299988, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10273, 'QUICK', 3, '1996-08-05', '1996-09-02', '1996-08-12', 3, 76.0699997, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10274, 'VINET', 6, '1996-08-06', '1996-09-03', '1996-08-16', 1, 6.01000023, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); +INSERT INTO orders VALUES (10275, 'MAGAA', 1, '1996-08-07', '1996-09-04', '1996-08-09', 1, 26.9300003, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10276, 'TORTU', 8, '1996-08-08', '1996-08-22', '1996-08-14', 3, 13.8400002, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10277, 'MORGK', 2, '1996-08-09', '1996-09-06', '1996-08-13', 3, 125.769997, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); +INSERT INTO orders VALUES (10278, 'BERGS', 8, '1996-08-12', '1996-09-09', '1996-08-16', 2, 92.6900024, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10279, 'LEHMS', 8, '1996-08-13', '1996-09-10', '1996-08-16', 2, 25.8299999, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10280, 'BERGS', 2, '1996-08-14', '1996-09-11', '1996-09-12', 1, 8.97999954, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10281, 'ROMEY', 4, '1996-08-14', '1996-08-28', '1996-08-21', 1, 2.94000006, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); +INSERT INTO orders VALUES (10282, 'ROMEY', 4, '1996-08-15', '1996-09-12', '1996-08-21', 1, 12.6899996, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); +INSERT INTO orders VALUES (10283, 'LILAS', 3, '1996-08-16', '1996-09-13', '1996-08-23', 3, 84.8099976, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10284, 'LEHMS', 4, '1996-08-19', '1996-09-16', '1996-08-27', 1, 76.5599976, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10285, 'QUICK', 1, '1996-08-20', '1996-09-17', '1996-08-26', 2, 76.8300018, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10286, 'QUICK', 8, '1996-08-21', '1996-09-18', '1996-08-30', 3, 229.240005, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10287, 'RICAR', 8, '1996-08-22', '1996-09-19', '1996-08-28', 3, 12.7600002, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10288, 'REGGC', 4, '1996-08-23', '1996-09-20', '1996-09-03', 1, 7.44999981, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10289, 'BSBEV', 7, '1996-08-26', '1996-09-23', '1996-08-28', 3, 22.7700005, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10290, 'COMMI', 8, '1996-08-27', '1996-09-24', '1996-09-03', 1, 79.6999969, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); +INSERT INTO orders VALUES (10291, 'QUEDE', 6, '1996-08-27', '1996-09-24', '1996-09-04', 2, 6.4000001, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10292, 'TRADH', 1, '1996-08-28', '1996-09-25', '1996-09-02', 2, 1.35000002, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); +INSERT INTO orders VALUES (10293, 'TORTU', 1, '1996-08-29', '1996-09-26', '1996-09-11', 3, 21.1800003, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10294, 'RATTC', 4, '1996-08-30', '1996-09-27', '1996-09-05', 2, 147.259995, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10295, 'VINET', 2, '1996-09-02', '1996-09-30', '1996-09-10', 2, 1.14999998, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); +INSERT INTO orders VALUES (10296, 'LILAS', 6, '1996-09-03', '1996-10-01', '1996-09-11', 1, 0.119999997, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10297, 'BLONP', 5, '1996-09-04', '1996-10-16', '1996-09-10', 2, 5.73999977, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10298, 'HUNGO', 6, '1996-09-05', '1996-10-03', '1996-09-11', 2, 168.220001, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10299, 'RICAR', 4, '1996-09-06', '1996-10-04', '1996-09-13', 2, 29.7600002, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10300, 'MAGAA', 2, '1996-09-09', '1996-10-07', '1996-09-18', 2, 17.6800003, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10301, 'WANDK', 8, '1996-09-09', '1996-10-07', '1996-09-17', 2, 45.0800018, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10302, 'SUPRD', 4, '1996-09-10', '1996-10-08', '1996-10-09', 2, 6.26999998, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10303, 'GODOS', 7, '1996-09-11', '1996-10-09', '1996-09-18', 2, 107.830002, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (10304, 'TORTU', 1, '1996-09-12', '1996-10-10', '1996-09-17', 2, 63.7900009, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10305, 'OLDWO', 8, '1996-09-13', '1996-10-11', '1996-10-09', 3, 257.619995, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10306, 'ROMEY', 1, '1996-09-16', '1996-10-14', '1996-09-23', 3, 7.55999994, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); +INSERT INTO orders VALUES (10307, 'LONEP', 2, '1996-09-17', '1996-10-15', '1996-09-25', 2, 0.560000002, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); +INSERT INTO orders VALUES (10308, 'ANATR', 7, '1996-09-18', '1996-10-16', '1996-09-24', 3, 1.61000001, 'Ana Trujillo Emparedados y helados', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico'); +INSERT INTO orders VALUES (10309, 'HUNGO', 3, '1996-09-19', '1996-10-17', '1996-10-23', 1, 47.2999992, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10310, 'THEBI', 8, '1996-09-20', '1996-10-18', '1996-09-27', 2, 17.5200005, 'The Big Cheese', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA'); +INSERT INTO orders VALUES (10311, 'DUMON', 1, '1996-09-20', '1996-10-04', '1996-09-26', 3, 24.6900005, 'Du monde entier', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France'); +INSERT INTO orders VALUES (10312, 'WANDK', 2, '1996-09-23', '1996-10-21', '1996-10-03', 2, 40.2599983, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10313, 'QUICK', 2, '1996-09-24', '1996-10-22', '1996-10-04', 2, 1.96000004, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10314, 'RATTC', 1, '1996-09-25', '1996-10-23', '1996-10-04', 2, 74.1600037, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10315, 'ISLAT', 4, '1996-09-26', '1996-10-24', '1996-10-03', 2, 41.7599983, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10316, 'RATTC', 1, '1996-09-27', '1996-10-25', '1996-10-08', 3, 150.149994, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10317, 'LONEP', 6, '1996-09-30', '1996-10-28', '1996-10-10', 1, 12.6899996, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); +INSERT INTO orders VALUES (10318, 'ISLAT', 8, '1996-10-01', '1996-10-29', '1996-10-04', 2, 4.73000002, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10319, 'TORTU', 7, '1996-10-02', '1996-10-30', '1996-10-11', 3, 64.5, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10320, 'WARTH', 5, '1996-10-03', '1996-10-17', '1996-10-18', 3, 34.5699997, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10321, 'ISLAT', 3, '1996-10-03', '1996-10-31', '1996-10-11', 2, 3.43000007, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10322, 'PERIC', 7, '1996-10-04', '1996-11-01', '1996-10-23', 3, 0.400000006, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10323, 'KOENE', 4, '1996-10-07', '1996-11-04', '1996-10-14', 1, 4.88000011, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10324, 'SAVEA', 9, '1996-10-08', '1996-11-05', '1996-10-10', 1, 214.270004, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10325, 'KOENE', 1, '1996-10-09', '1996-10-23', '1996-10-14', 3, 64.8600006, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10326, 'BOLID', 4, '1996-10-10', '1996-11-07', '1996-10-14', 2, 77.9199982, 'Bólido Comidas preparadas', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain'); +INSERT INTO orders VALUES (10327, 'FOLKO', 2, '1996-10-11', '1996-11-08', '1996-10-14', 1, 63.3600006, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10328, 'FURIB', 4, '1996-10-14', '1996-11-11', '1996-10-17', 3, 87.0299988, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); +INSERT INTO orders VALUES (10329, 'SPLIR', 4, '1996-10-15', '1996-11-26', '1996-10-23', 2, 191.669998, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10330, 'LILAS', 3, '1996-10-16', '1996-11-13', '1996-10-28', 1, 12.75, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10331, 'BONAP', 9, '1996-10-16', '1996-11-27', '1996-10-21', 1, 10.1899996, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10332, 'MEREP', 3, '1996-10-17', '1996-11-28', '1996-10-21', 2, 52.8400002, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10333, 'WARTH', 5, '1996-10-18', '1996-11-15', '1996-10-25', 3, 0.589999974, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10334, 'VICTE', 8, '1996-10-21', '1996-11-18', '1996-10-28', 2, 8.56000042, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10335, 'HUNGO', 7, '1996-10-22', '1996-11-19', '1996-10-24', 2, 42.1100006, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10336, 'PRINI', 7, '1996-10-23', '1996-11-20', '1996-10-25', 2, 15.5100002, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); +INSERT INTO orders VALUES (10337, 'FRANK', 4, '1996-10-24', '1996-11-21', '1996-10-29', 3, 108.260002, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10338, 'OLDWO', 4, '1996-10-25', '1996-11-22', '1996-10-29', 3, 84.2099991, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10339, 'MEREP', 2, '1996-10-28', '1996-11-25', '1996-11-04', 2, 15.6599998, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10340, 'BONAP', 1, '1996-10-29', '1996-11-26', '1996-11-08', 3, 166.309998, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10341, 'SIMOB', 7, '1996-10-29', '1996-11-26', '1996-11-05', 3, 26.7800007, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); +INSERT INTO orders VALUES (10342, 'FRANK', 4, '1996-10-30', '1996-11-13', '1996-11-04', 2, 54.8300018, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10343, 'LEHMS', 4, '1996-10-31', '1996-11-28', '1996-11-06', 1, 110.370003, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10344, 'WHITC', 4, '1996-11-01', '1996-11-29', '1996-11-05', 2, 23.2900009, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10345, 'QUICK', 2, '1996-11-04', '1996-12-02', '1996-11-11', 2, 249.059998, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10346, 'RATTC', 3, '1996-11-05', '1996-12-17', '1996-11-08', 3, 142.080002, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10347, 'FAMIA', 4, '1996-11-06', '1996-12-04', '1996-11-08', 3, 3.0999999, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); +INSERT INTO orders VALUES (10348, 'WANDK', 4, '1996-11-07', '1996-12-05', '1996-11-15', 2, 0.779999971, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10349, 'SPLIR', 7, '1996-11-08', '1996-12-06', '1996-11-15', 1, 8.63000011, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10350, 'LAMAI', 6, '1996-11-11', '1996-12-09', '1996-12-03', 2, 64.1900024, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10351, 'ERNSH', 1, '1996-11-11', '1996-12-09', '1996-11-20', 1, 162.330002, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10352, 'FURIB', 3, '1996-11-12', '1996-11-26', '1996-11-18', 3, 1.29999995, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); +INSERT INTO orders VALUES (10353, 'PICCO', 7, '1996-11-13', '1996-12-11', '1996-11-25', 3, 360.630005, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10354, 'PERIC', 8, '1996-11-14', '1996-12-12', '1996-11-20', 3, 53.7999992, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10355, 'AROUT', 6, '1996-11-15', '1996-12-13', '1996-11-20', 1, 41.9500008, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10356, 'WANDK', 6, '1996-11-18', '1996-12-16', '1996-11-27', 2, 36.7099991, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10357, 'LILAS', 1, '1996-11-19', '1996-12-17', '1996-12-02', 3, 34.8800011, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10358, 'LAMAI', 5, '1996-11-20', '1996-12-18', '1996-11-27', 1, 19.6399994, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10359, 'SEVES', 5, '1996-11-21', '1996-12-19', '1996-11-26', 3, 288.429993, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10360, 'BLONP', 4, '1996-11-22', '1996-12-20', '1996-12-02', 3, 131.699997, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10361, 'QUICK', 1, '1996-11-22', '1996-12-20', '1996-12-03', 2, 183.169998, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10362, 'BONAP', 3, '1996-11-25', '1996-12-23', '1996-11-28', 1, 96.0400009, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10363, 'DRACD', 4, '1996-11-26', '1996-12-24', '1996-12-04', 3, 30.5400009, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); +INSERT INTO orders VALUES (10364, 'EASTC', 1, '1996-11-26', '1997-01-07', '1996-12-04', 1, 71.9700012, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); +INSERT INTO orders VALUES (10365, 'ANTON', 3, '1996-11-27', '1996-12-25', '1996-12-02', 2, 22, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); +INSERT INTO orders VALUES (10366, 'GALED', 8, '1996-11-28', '1997-01-09', '1996-12-30', 2, 10.1400003, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); +INSERT INTO orders VALUES (10367, 'VAFFE', 7, '1996-11-28', '1996-12-26', '1996-12-02', 3, 13.5500002, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10368, 'ERNSH', 2, '1996-11-29', '1996-12-27', '1996-12-02', 2, 101.949997, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10369, 'SPLIR', 8, '1996-12-02', '1996-12-30', '1996-12-09', 2, 195.679993, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10370, 'CHOPS', 6, '1996-12-03', '1996-12-31', '1996-12-27', 2, 1.16999996, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); +INSERT INTO orders VALUES (10371, 'LAMAI', 1, '1996-12-03', '1996-12-31', '1996-12-24', 1, 0.449999988, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10372, 'QUEEN', 5, '1996-12-04', '1997-01-01', '1996-12-09', 2, 890.780029, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10373, 'HUNGO', 4, '1996-12-05', '1997-01-02', '1996-12-11', 3, 124.120003, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10374, 'WOLZA', 1, '1996-12-05', '1997-01-02', '1996-12-09', 3, 3.94000006, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); +INSERT INTO orders VALUES (10375, 'HUNGC', 3, '1996-12-06', '1997-01-03', '1996-12-09', 2, 20.1200008, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); +INSERT INTO orders VALUES (10376, 'MEREP', 1, '1996-12-09', '1997-01-06', '1996-12-13', 2, 20.3899994, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10377, 'SEVES', 1, '1996-12-09', '1997-01-06', '1996-12-13', 3, 22.2099991, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10378, 'FOLKO', 5, '1996-12-10', '1997-01-07', '1996-12-19', 3, 5.44000006, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10379, 'QUEDE', 2, '1996-12-11', '1997-01-08', '1996-12-13', 1, 45.0299988, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10380, 'HUNGO', 8, '1996-12-12', '1997-01-09', '1997-01-16', 3, 35.0299988, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10381, 'LILAS', 3, '1996-12-12', '1997-01-09', '1996-12-13', 3, 7.98999977, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10382, 'ERNSH', 4, '1996-12-13', '1997-01-10', '1996-12-16', 1, 94.7699966, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10383, 'AROUT', 8, '1996-12-16', '1997-01-13', '1996-12-18', 3, 34.2400017, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10384, 'BERGS', 3, '1996-12-16', '1997-01-13', '1996-12-20', 3, 168.639999, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10385, 'SPLIR', 1, '1996-12-17', '1997-01-14', '1996-12-23', 2, 30.9599991, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10386, 'FAMIA', 9, '1996-12-18', '1997-01-01', '1996-12-25', 3, 13.9899998, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); +INSERT INTO orders VALUES (10387, 'SANTG', 1, '1996-12-18', '1997-01-15', '1996-12-20', 2, 93.6299973, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); +INSERT INTO orders VALUES (10388, 'SEVES', 2, '1996-12-19', '1997-01-16', '1996-12-20', 1, 34.8600006, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10389, 'BOTTM', 4, '1996-12-20', '1997-01-17', '1996-12-24', 2, 47.4199982, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10390, 'ERNSH', 6, '1996-12-23', '1997-01-20', '1996-12-26', 1, 126.379997, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10391, 'DRACD', 3, '1996-12-23', '1997-01-20', '1996-12-31', 3, 5.44999981, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); +INSERT INTO orders VALUES (10392, 'PICCO', 2, '1996-12-24', '1997-01-21', '1997-01-01', 3, 122.459999, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10393, 'SAVEA', 1, '1996-12-25', '1997-01-22', '1997-01-03', 3, 126.559998, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10394, 'HUNGC', 1, '1996-12-25', '1997-01-22', '1997-01-03', 3, 30.3400002, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); +INSERT INTO orders VALUES (10395, 'HILAA', 6, '1996-12-26', '1997-01-23', '1997-01-03', 1, 184.410004, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10396, 'FRANK', 1, '1996-12-27', '1997-01-10', '1997-01-06', 3, 135.350006, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10397, 'PRINI', 5, '1996-12-27', '1997-01-24', '1997-01-02', 1, 60.2599983, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); +INSERT INTO orders VALUES (10398, 'SAVEA', 2, '1996-12-30', '1997-01-27', '1997-01-09', 3, 89.1600037, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10399, 'VAFFE', 8, '1996-12-31', '1997-01-14', '1997-01-08', 3, 27.3600006, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10400, 'EASTC', 1, '1997-01-01', '1997-01-29', '1997-01-16', 3, 83.9300003, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); +INSERT INTO orders VALUES (10401, 'RATTC', 1, '1997-01-01', '1997-01-29', '1997-01-10', 1, 12.5100002, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10402, 'ERNSH', 8, '1997-01-02', '1997-02-13', '1997-01-10', 2, 67.8799973, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10403, 'ERNSH', 4, '1997-01-03', '1997-01-31', '1997-01-09', 3, 73.7900009, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10404, 'MAGAA', 2, '1997-01-03', '1997-01-31', '1997-01-08', 1, 155.970001, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10405, 'LINOD', 1, '1997-01-06', '1997-02-03', '1997-01-22', 1, 34.8199997, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10406, 'QUEEN', 7, '1997-01-07', '1997-02-18', '1997-01-13', 1, 108.040001, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10407, 'OTTIK', 2, '1997-01-07', '1997-02-04', '1997-01-30', 2, 91.4800034, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (10408, 'FOLIG', 8, '1997-01-08', '1997-02-05', '1997-01-14', 1, 11.2600002, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); +INSERT INTO orders VALUES (10409, 'OCEAN', 3, '1997-01-09', '1997-02-06', '1997-01-14', 1, 29.8299999, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10410, 'BOTTM', 3, '1997-01-10', '1997-02-07', '1997-01-15', 3, 2.4000001, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10411, 'BOTTM', 9, '1997-01-10', '1997-02-07', '1997-01-21', 3, 23.6499996, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10412, 'WARTH', 8, '1997-01-13', '1997-02-10', '1997-01-15', 2, 3.76999998, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10413, 'LAMAI', 3, '1997-01-14', '1997-02-11', '1997-01-16', 2, 95.6600037, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10414, 'FAMIA', 2, '1997-01-14', '1997-02-11', '1997-01-17', 3, 21.4799995, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); +INSERT INTO orders VALUES (10415, 'HUNGC', 3, '1997-01-15', '1997-02-12', '1997-01-24', 1, 0.200000003, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); +INSERT INTO orders VALUES (10416, 'WARTH', 8, '1997-01-16', '1997-02-13', '1997-01-27', 3, 22.7199993, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10417, 'SIMOB', 4, '1997-01-16', '1997-02-13', '1997-01-28', 3, 70.2900009, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); +INSERT INTO orders VALUES (10418, 'QUICK', 4, '1997-01-17', '1997-02-14', '1997-01-24', 1, 17.5499992, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10419, 'RICSU', 4, '1997-01-20', '1997-02-17', '1997-01-30', 2, 137.350006, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (10420, 'WELLI', 3, '1997-01-21', '1997-02-18', '1997-01-27', 1, 44.1199989, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10421, 'QUEDE', 8, '1997-01-21', '1997-03-04', '1997-01-27', 1, 99.2300034, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10422, 'FRANS', 2, '1997-01-22', '1997-02-19', '1997-01-31', 1, 3.01999998, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); +INSERT INTO orders VALUES (10423, 'GOURL', 6, '1997-01-23', '1997-02-06', '1997-02-24', 3, 24.5, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (10424, 'MEREP', 7, '1997-01-23', '1997-02-20', '1997-01-27', 2, 370.609985, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10425, 'LAMAI', 6, '1997-01-24', '1997-02-21', '1997-02-14', 2, 7.92999983, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10426, 'GALED', 4, '1997-01-27', '1997-02-24', '1997-02-06', 1, 18.6900005, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); +INSERT INTO orders VALUES (10427, 'PICCO', 4, '1997-01-27', '1997-02-24', '1997-03-03', 2, 31.2900009, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10428, 'REGGC', 7, '1997-01-28', '1997-02-25', '1997-02-04', 1, 11.0900002, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10429, 'HUNGO', 3, '1997-01-29', '1997-03-12', '1997-02-07', 2, 56.6300011, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10430, 'ERNSH', 4, '1997-01-30', '1997-02-13', '1997-02-03', 1, 458.779999, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10431, 'BOTTM', 4, '1997-01-30', '1997-02-13', '1997-02-07', 2, 44.1699982, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10432, 'SPLIR', 3, '1997-01-31', '1997-02-14', '1997-02-07', 2, 4.34000015, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10433, 'PRINI', 3, '1997-02-03', '1997-03-03', '1997-03-04', 3, 73.8300018, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); +INSERT INTO orders VALUES (10434, 'FOLKO', 3, '1997-02-03', '1997-03-03', '1997-02-13', 2, 17.9200001, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10435, 'CONSH', 8, '1997-02-04', '1997-03-18', '1997-02-07', 2, 9.21000004, 'Consolidated Holdings', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK'); +INSERT INTO orders VALUES (10436, 'BLONP', 3, '1997-02-05', '1997-03-05', '1997-02-11', 2, 156.660004, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10437, 'WARTH', 8, '1997-02-05', '1997-03-05', '1997-02-12', 1, 19.9699993, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10438, 'TOMSP', 3, '1997-02-06', '1997-03-06', '1997-02-14', 2, 8.23999977, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); +INSERT INTO orders VALUES (10439, 'MEREP', 6, '1997-02-07', '1997-03-07', '1997-02-10', 3, 4.07000017, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10440, 'SAVEA', 4, '1997-02-10', '1997-03-10', '1997-02-28', 2, 86.5299988, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10441, 'OLDWO', 3, '1997-02-10', '1997-03-24', '1997-03-14', 2, 73.0199966, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10442, 'ERNSH', 3, '1997-02-11', '1997-03-11', '1997-02-18', 2, 47.9399986, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10443, 'REGGC', 8, '1997-02-12', '1997-03-12', '1997-02-14', 1, 13.9499998, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10444, 'BERGS', 3, '1997-02-12', '1997-03-12', '1997-02-21', 3, 3.5, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10445, 'BERGS', 3, '1997-02-13', '1997-03-13', '1997-02-20', 1, 9.30000019, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10446, 'TOMSP', 6, '1997-02-14', '1997-03-14', '1997-02-19', 1, 14.6800003, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); +INSERT INTO orders VALUES (10447, 'RICAR', 4, '1997-02-14', '1997-03-14', '1997-03-07', 2, 68.6600037, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10448, 'RANCH', 4, '1997-02-17', '1997-03-17', '1997-02-24', 2, 38.8199997, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10449, 'BLONP', 3, '1997-02-18', '1997-03-18', '1997-02-27', 2, 53.2999992, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10450, 'VICTE', 8, '1997-02-19', '1997-03-19', '1997-03-11', 2, 7.23000002, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10451, 'QUICK', 4, '1997-02-19', '1997-03-05', '1997-03-12', 3, 189.089996, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10452, 'SAVEA', 8, '1997-02-20', '1997-03-20', '1997-02-26', 1, 140.259995, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10453, 'AROUT', 1, '1997-02-21', '1997-03-21', '1997-02-26', 2, 25.3600006, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10454, 'LAMAI', 4, '1997-02-21', '1997-03-21', '1997-02-25', 3, 2.74000001, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10455, 'WARTH', 8, '1997-02-24', '1997-04-07', '1997-03-03', 2, 180.449997, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10456, 'KOENE', 8, '1997-02-25', '1997-04-08', '1997-02-28', 2, 8.11999989, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10457, 'KOENE', 2, '1997-02-25', '1997-03-25', '1997-03-03', 1, 11.5699997, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10458, 'SUPRD', 7, '1997-02-26', '1997-03-26', '1997-03-04', 3, 147.059998, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10459, 'VICTE', 4, '1997-02-27', '1997-03-27', '1997-02-28', 2, 25.0900002, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10460, 'FOLKO', 8, '1997-02-28', '1997-03-28', '1997-03-03', 1, 16.2700005, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10461, 'LILAS', 1, '1997-02-28', '1997-03-28', '1997-03-05', 3, 148.610001, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10462, 'CONSH', 2, '1997-03-03', '1997-03-31', '1997-03-18', 1, 6.17000008, 'Consolidated Holdings', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK'); +INSERT INTO orders VALUES (10463, 'SUPRD', 5, '1997-03-04', '1997-04-01', '1997-03-06', 3, 14.7799997, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10464, 'FURIB', 4, '1997-03-04', '1997-04-01', '1997-03-14', 2, 89, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); +INSERT INTO orders VALUES (10465, 'VAFFE', 1, '1997-03-05', '1997-04-02', '1997-03-14', 3, 145.039993, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10466, 'COMMI', 4, '1997-03-06', '1997-04-03', '1997-03-13', 1, 11.9300003, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); +INSERT INTO orders VALUES (10467, 'MAGAA', 8, '1997-03-06', '1997-04-03', '1997-03-11', 2, 4.92999983, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10468, 'KOENE', 3, '1997-03-07', '1997-04-04', '1997-03-12', 3, 44.1199989, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10469, 'WHITC', 1, '1997-03-10', '1997-04-07', '1997-03-14', 1, 60.1800003, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10470, 'BONAP', 4, '1997-03-11', '1997-04-08', '1997-03-14', 2, 64.5599976, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10471, 'BSBEV', 2, '1997-03-11', '1997-04-08', '1997-03-18', 3, 45.5900002, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10472, 'SEVES', 8, '1997-03-12', '1997-04-09', '1997-03-19', 1, 4.19999981, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10473, 'ISLAT', 1, '1997-03-13', '1997-03-27', '1997-03-21', 3, 16.3700008, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10474, 'PERIC', 5, '1997-03-13', '1997-04-10', '1997-03-21', 2, 83.4899979, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10475, 'SUPRD', 9, '1997-03-14', '1997-04-11', '1997-04-04', 1, 68.5199966, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10476, 'HILAA', 8, '1997-03-17', '1997-04-14', '1997-03-24', 3, 4.40999985, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10477, 'PRINI', 5, '1997-03-17', '1997-04-14', '1997-03-25', 2, 13.0200005, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); +INSERT INTO orders VALUES (10478, 'VICTE', 2, '1997-03-18', '1997-04-01', '1997-03-26', 3, 4.80999994, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10479, 'RATTC', 3, '1997-03-19', '1997-04-16', '1997-03-21', 3, 708.950012, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10480, 'FOLIG', 6, '1997-03-20', '1997-04-17', '1997-03-24', 2, 1.35000002, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); +INSERT INTO orders VALUES (10481, 'RICAR', 8, '1997-03-20', '1997-04-17', '1997-03-25', 2, 64.3300018, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10482, 'LAZYK', 1, '1997-03-21', '1997-04-18', '1997-04-10', 3, 7.48000002, 'Lazy K Kountry Store', '12 Orchestra Terrace', 'Walla Walla', 'WA', '99362', 'USA'); +INSERT INTO orders VALUES (10483, 'WHITC', 7, '1997-03-24', '1997-04-21', '1997-04-25', 2, 15.2799997, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10484, 'BSBEV', 3, '1997-03-24', '1997-04-21', '1997-04-01', 3, 6.88000011, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10485, 'LINOD', 4, '1997-03-25', '1997-04-08', '1997-03-31', 2, 64.4499969, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10486, 'HILAA', 1, '1997-03-26', '1997-04-23', '1997-04-02', 2, 30.5300007, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10487, 'QUEEN', 2, '1997-03-26', '1997-04-23', '1997-03-28', 2, 71.0699997, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10488, 'FRANK', 8, '1997-03-27', '1997-04-24', '1997-04-02', 2, 4.92999983, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10489, 'PICCO', 6, '1997-03-28', '1997-04-25', '1997-04-09', 2, 5.28999996, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10490, 'HILAA', 7, '1997-03-31', '1997-04-28', '1997-04-03', 2, 210.190002, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10491, 'FURIB', 8, '1997-03-31', '1997-04-28', '1997-04-08', 3, 16.9599991, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); +INSERT INTO orders VALUES (10492, 'BOTTM', 3, '1997-04-01', '1997-04-29', '1997-04-11', 1, 62.8899994, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10493, 'LAMAI', 4, '1997-04-02', '1997-04-30', '1997-04-10', 3, 10.6400003, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10494, 'COMMI', 4, '1997-04-02', '1997-04-30', '1997-04-09', 2, 65.9899979, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); +INSERT INTO orders VALUES (10495, 'LAUGB', 3, '1997-04-03', '1997-05-01', '1997-04-11', 3, 4.6500001, 'Laughing Bacchus Wine Cellars', '2319 Elm St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada'); +INSERT INTO orders VALUES (10496, 'TRADH', 7, '1997-04-04', '1997-05-02', '1997-04-07', 2, 46.7700005, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); +INSERT INTO orders VALUES (10497, 'LEHMS', 7, '1997-04-04', '1997-05-02', '1997-04-07', 1, 36.2099991, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10498, 'HILAA', 8, '1997-04-07', '1997-05-05', '1997-04-11', 2, 29.75, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10499, 'LILAS', 4, '1997-04-08', '1997-05-06', '1997-04-16', 2, 102.019997, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10500, 'LAMAI', 6, '1997-04-09', '1997-05-07', '1997-04-17', 1, 42.6800003, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10501, 'BLAUS', 9, '1997-04-09', '1997-05-07', '1997-04-16', 3, 8.85000038, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); +INSERT INTO orders VALUES (10502, 'PERIC', 2, '1997-04-10', '1997-05-08', '1997-04-29', 1, 69.3199997, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10503, 'HUNGO', 6, '1997-04-11', '1997-05-09', '1997-04-16', 2, 16.7399998, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10504, 'WHITC', 4, '1997-04-11', '1997-05-09', '1997-04-18', 3, 59.1300011, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10505, 'MEREP', 3, '1997-04-14', '1997-05-12', '1997-04-21', 3, 7.13000011, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10506, 'KOENE', 9, '1997-04-15', '1997-05-13', '1997-05-02', 2, 21.1900005, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10507, 'ANTON', 7, '1997-04-15', '1997-05-13', '1997-04-22', 1, 47.4500008, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); +INSERT INTO orders VALUES (10508, 'OTTIK', 1, '1997-04-16', '1997-05-14', '1997-05-13', 2, 4.98999977, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (10509, 'BLAUS', 4, '1997-04-17', '1997-05-15', '1997-04-29', 1, 0.150000006, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); +INSERT INTO orders VALUES (10510, 'SAVEA', 6, '1997-04-18', '1997-05-16', '1997-04-28', 3, 367.630005, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10511, 'BONAP', 4, '1997-04-18', '1997-05-16', '1997-04-21', 3, 350.640015, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10512, 'FAMIA', 7, '1997-04-21', '1997-05-19', '1997-04-24', 2, 3.52999997, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); +INSERT INTO orders VALUES (10513, 'WANDK', 7, '1997-04-22', '1997-06-03', '1997-04-28', 1, 105.650002, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10514, 'ERNSH', 3, '1997-04-22', '1997-05-20', '1997-05-16', 2, 789.950012, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10515, 'QUICK', 2, '1997-04-23', '1997-05-07', '1997-05-23', 1, 204.470001, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10516, 'HUNGO', 2, '1997-04-24', '1997-05-22', '1997-05-01', 3, 62.7799988, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10517, 'NORTS', 3, '1997-04-24', '1997-05-22', '1997-04-29', 3, 32.0699997, 'North/South', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK'); +INSERT INTO orders VALUES (10518, 'TORTU', 4, '1997-04-25', '1997-05-09', '1997-05-05', 2, 218.149994, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10519, 'CHOPS', 6, '1997-04-28', '1997-05-26', '1997-05-01', 3, 91.7600021, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); +INSERT INTO orders VALUES (10520, 'SANTG', 7, '1997-04-29', '1997-05-27', '1997-05-01', 1, 13.3699999, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); +INSERT INTO orders VALUES (10521, 'CACTU', 8, '1997-04-29', '1997-05-27', '1997-05-02', 2, 17.2199993, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10522, 'LEHMS', 4, '1997-04-30', '1997-05-28', '1997-05-06', 1, 45.3300018, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10523, 'SEVES', 7, '1997-05-01', '1997-05-29', '1997-05-30', 2, 77.6299973, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10524, 'BERGS', 1, '1997-05-01', '1997-05-29', '1997-05-07', 2, 244.789993, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10525, 'BONAP', 1, '1997-05-02', '1997-05-30', '1997-05-23', 2, 11.0600004, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10526, 'WARTH', 4, '1997-05-05', '1997-06-02', '1997-05-15', 2, 58.5900002, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10527, 'QUICK', 7, '1997-05-05', '1997-06-02', '1997-05-07', 1, 41.9000015, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10528, 'GREAL', 6, '1997-05-06', '1997-05-20', '1997-05-09', 2, 3.3499999, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (10529, 'MAISD', 5, '1997-05-07', '1997-06-04', '1997-05-09', 2, 66.6900024, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); +INSERT INTO orders VALUES (10530, 'PICCO', 3, '1997-05-08', '1997-06-05', '1997-05-12', 2, 339.220001, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10531, 'OCEAN', 7, '1997-05-08', '1997-06-05', '1997-05-19', 1, 8.11999989, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10532, 'EASTC', 7, '1997-05-09', '1997-06-06', '1997-05-12', 3, 74.4599991, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); +INSERT INTO orders VALUES (10533, 'FOLKO', 8, '1997-05-12', '1997-06-09', '1997-05-22', 1, 188.039993, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10534, 'LEHMS', 8, '1997-05-12', '1997-06-09', '1997-05-14', 2, 27.9400005, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10535, 'ANTON', 4, '1997-05-13', '1997-06-10', '1997-05-21', 1, 15.6400003, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); +INSERT INTO orders VALUES (10536, 'LEHMS', 3, '1997-05-14', '1997-06-11', '1997-06-06', 2, 58.8800011, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10537, 'RICSU', 1, '1997-05-14', '1997-05-28', '1997-05-19', 1, 78.8499985, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (10538, 'BSBEV', 9, '1997-05-15', '1997-06-12', '1997-05-16', 3, 4.86999989, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10539, 'BSBEV', 6, '1997-05-16', '1997-06-13', '1997-05-23', 3, 12.3599997, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10540, 'QUICK', 3, '1997-05-19', '1997-06-16', '1997-06-13', 3, 1007.64001, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10541, 'HANAR', 2, '1997-05-19', '1997-06-16', '1997-05-29', 1, 68.6500015, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10542, 'KOENE', 1, '1997-05-20', '1997-06-17', '1997-05-26', 3, 10.9499998, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10543, 'LILAS', 8, '1997-05-21', '1997-06-18', '1997-05-23', 2, 48.1699982, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10544, 'LONEP', 4, '1997-05-21', '1997-06-18', '1997-05-30', 1, 24.9099998, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); +INSERT INTO orders VALUES (10545, 'LAZYK', 8, '1997-05-22', '1997-06-19', '1997-06-26', 2, 11.9200001, 'Lazy K Kountry Store', '12 Orchestra Terrace', 'Walla Walla', 'WA', '99362', 'USA'); +INSERT INTO orders VALUES (10546, 'VICTE', 1, '1997-05-23', '1997-06-20', '1997-05-27', 3, 194.720001, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10547, 'SEVES', 3, '1997-05-23', '1997-06-20', '1997-06-02', 2, 178.429993, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10548, 'TOMSP', 3, '1997-05-26', '1997-06-23', '1997-06-02', 2, 1.42999995, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); +INSERT INTO orders VALUES (10549, 'QUICK', 5, '1997-05-27', '1997-06-10', '1997-05-30', 1, 171.240005, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10550, 'GODOS', 7, '1997-05-28', '1997-06-25', '1997-06-06', 3, 4.32000017, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (10551, 'FURIB', 4, '1997-05-28', '1997-07-09', '1997-06-06', 3, 72.9499969, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); +INSERT INTO orders VALUES (10552, 'HILAA', 2, '1997-05-29', '1997-06-26', '1997-06-05', 1, 83.2200012, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10553, 'WARTH', 2, '1997-05-30', '1997-06-27', '1997-06-03', 2, 149.490005, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10554, 'OTTIK', 4, '1997-05-30', '1997-06-27', '1997-06-05', 3, 120.970001, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (10555, 'SAVEA', 6, '1997-06-02', '1997-06-30', '1997-06-04', 3, 252.490005, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10556, 'SIMOB', 2, '1997-06-03', '1997-07-15', '1997-06-13', 1, 9.80000019, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); +INSERT INTO orders VALUES (10557, 'LEHMS', 9, '1997-06-03', '1997-06-17', '1997-06-06', 2, 96.7200012, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10558, 'AROUT', 1, '1997-06-04', '1997-07-02', '1997-06-10', 2, 72.9700012, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10559, 'BLONP', 6, '1997-06-05', '1997-07-03', '1997-06-13', 1, 8.05000019, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10560, 'FRANK', 8, '1997-06-06', '1997-07-04', '1997-06-09', 1, 36.6500015, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10561, 'FOLKO', 2, '1997-06-06', '1997-07-04', '1997-06-09', 2, 242.210007, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10562, 'REGGC', 1, '1997-06-09', '1997-07-07', '1997-06-12', 1, 22.9500008, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10563, 'RICAR', 2, '1997-06-10', '1997-07-22', '1997-06-24', 2, 60.4300003, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10564, 'RATTC', 4, '1997-06-10', '1997-07-08', '1997-06-16', 3, 13.75, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10565, 'MEREP', 8, '1997-06-11', '1997-07-09', '1997-06-18', 2, 7.1500001, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10566, 'BLONP', 9, '1997-06-12', '1997-07-10', '1997-06-18', 1, 88.4000015, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10567, 'HUNGO', 1, '1997-06-12', '1997-07-10', '1997-06-17', 1, 33.9700012, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10568, 'GALED', 3, '1997-06-13', '1997-07-11', '1997-07-09', 3, 6.53999996, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); +INSERT INTO orders VALUES (10569, 'RATTC', 5, '1997-06-16', '1997-07-14', '1997-07-11', 1, 58.9799995, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10570, 'MEREP', 3, '1997-06-17', '1997-07-15', '1997-06-19', 3, 188.990005, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10571, 'ERNSH', 8, '1997-06-17', '1997-07-29', '1997-07-04', 3, 26.0599995, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10572, 'BERGS', 3, '1997-06-18', '1997-07-16', '1997-06-25', 2, 116.43, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10573, 'ANTON', 7, '1997-06-19', '1997-07-17', '1997-06-20', 3, 84.8399963, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); +INSERT INTO orders VALUES (10574, 'TRAIH', 4, '1997-06-19', '1997-07-17', '1997-06-30', 2, 37.5999985, 'Trail''s Head Gourmet Provisioners', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA'); +INSERT INTO orders VALUES (10575, 'MORGK', 5, '1997-06-20', '1997-07-04', '1997-06-30', 1, 127.339996, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); +INSERT INTO orders VALUES (10576, 'TORTU', 3, '1997-06-23', '1997-07-07', '1997-06-30', 3, 18.5599995, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10577, 'TRAIH', 9, '1997-06-23', '1997-08-04', '1997-06-30', 2, 25.4099998, 'Trail''s Head Gourmet Provisioners', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA'); +INSERT INTO orders VALUES (10578, 'BSBEV', 4, '1997-06-24', '1997-07-22', '1997-07-25', 3, 29.6000004, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10579, 'LETSS', 1, '1997-06-25', '1997-07-23', '1997-07-04', 2, 13.7299995, 'Let''s Stop N Shop', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA'); +INSERT INTO orders VALUES (10580, 'OTTIK', 4, '1997-06-26', '1997-07-24', '1997-07-01', 3, 75.8899994, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (10581, 'FAMIA', 3, '1997-06-26', '1997-07-24', '1997-07-02', 1, 3.00999999, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); +INSERT INTO orders VALUES (10582, 'BLAUS', 3, '1997-06-27', '1997-07-25', '1997-07-14', 2, 27.7099991, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); +INSERT INTO orders VALUES (10583, 'WARTH', 2, '1997-06-30', '1997-07-28', '1997-07-04', 2, 7.28000021, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10584, 'BLONP', 4, '1997-06-30', '1997-07-28', '1997-07-04', 1, 59.1399994, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10585, 'WELLI', 7, '1997-07-01', '1997-07-29', '1997-07-10', 1, 13.4099998, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10586, 'REGGC', 9, '1997-07-02', '1997-07-30', '1997-07-09', 1, 0.479999989, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10587, 'QUEDE', 1, '1997-07-02', '1997-07-30', '1997-07-09', 1, 62.5200005, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10588, 'QUICK', 2, '1997-07-03', '1997-07-31', '1997-07-10', 3, 194.669998, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10589, 'GREAL', 8, '1997-07-04', '1997-08-01', '1997-07-14', 2, 4.42000008, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (10590, 'MEREP', 4, '1997-07-07', '1997-08-04', '1997-07-14', 3, 44.7700005, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10591, 'VAFFE', 1, '1997-07-07', '1997-07-21', '1997-07-16', 1, 55.9199982, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10592, 'LEHMS', 3, '1997-07-08', '1997-08-05', '1997-07-16', 1, 32.0999985, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10593, 'LEHMS', 7, '1997-07-09', '1997-08-06', '1997-08-13', 2, 174.199997, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10594, 'OLDWO', 3, '1997-07-09', '1997-08-06', '1997-07-16', 2, 5.23999977, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10595, 'ERNSH', 2, '1997-07-10', '1997-08-07', '1997-07-14', 1, 96.7799988, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10596, 'WHITC', 8, '1997-07-11', '1997-08-08', '1997-08-12', 1, 16.3400002, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10597, 'PICCO', 7, '1997-07-11', '1997-08-08', '1997-07-18', 3, 35.1199989, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10598, 'RATTC', 1, '1997-07-14', '1997-08-11', '1997-07-18', 3, 44.4199982, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10599, 'BSBEV', 6, '1997-07-15', '1997-08-26', '1997-07-21', 3, 29.9799995, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10600, 'HUNGC', 4, '1997-07-16', '1997-08-13', '1997-07-21', 1, 45.1300011, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); +INSERT INTO orders VALUES (10601, 'HILAA', 7, '1997-07-16', '1997-08-27', '1997-07-22', 1, 58.2999992, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10602, 'VAFFE', 8, '1997-07-17', '1997-08-14', '1997-07-22', 2, 2.92000008, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10603, 'SAVEA', 8, '1997-07-18', '1997-08-15', '1997-08-08', 2, 48.7700005, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10604, 'FURIB', 1, '1997-07-18', '1997-08-15', '1997-07-29', 1, 7.46000004, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); +INSERT INTO orders VALUES (10605, 'MEREP', 1, '1997-07-21', '1997-08-18', '1997-07-29', 2, 379.130005, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10606, 'TRADH', 4, '1997-07-22', '1997-08-19', '1997-07-31', 3, 79.4000015, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); +INSERT INTO orders VALUES (10607, 'SAVEA', 5, '1997-07-22', '1997-08-19', '1997-07-25', 1, 200.240005, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10608, 'TOMSP', 4, '1997-07-23', '1997-08-20', '1997-08-01', 2, 27.7900009, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); +INSERT INTO orders VALUES (10609, 'DUMON', 7, '1997-07-24', '1997-08-21', '1997-07-30', 2, 1.85000002, 'Du monde entier', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France'); +INSERT INTO orders VALUES (10610, 'LAMAI', 8, '1997-07-25', '1997-08-22', '1997-08-06', 1, 26.7800007, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10611, 'WOLZA', 6, '1997-07-25', '1997-08-22', '1997-08-01', 2, 80.6500015, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); +INSERT INTO orders VALUES (10612, 'SAVEA', 1, '1997-07-28', '1997-08-25', '1997-08-01', 2, 544.080017, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10613, 'HILAA', 4, '1997-07-29', '1997-08-26', '1997-08-01', 2, 8.10999966, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10614, 'BLAUS', 8, '1997-07-29', '1997-08-26', '1997-08-01', 3, 1.92999995, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); +INSERT INTO orders VALUES (10615, 'WILMK', 2, '1997-07-30', '1997-08-27', '1997-08-06', 3, 0.75, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); +INSERT INTO orders VALUES (10616, 'GREAL', 1, '1997-07-31', '1997-08-28', '1997-08-05', 2, 116.529999, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (10617, 'GREAL', 4, '1997-07-31', '1997-08-28', '1997-08-04', 2, 18.5300007, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (10618, 'MEREP', 1, '1997-08-01', '1997-09-12', '1997-08-08', 1, 154.679993, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10619, 'MEREP', 3, '1997-08-04', '1997-09-01', '1997-08-07', 3, 91.0500031, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10620, 'LAUGB', 2, '1997-08-05', '1997-09-02', '1997-08-14', 3, 0.939999998, 'Laughing Bacchus Wine Cellars', '2319 Elm St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada'); +INSERT INTO orders VALUES (10621, 'ISLAT', 4, '1997-08-05', '1997-09-02', '1997-08-11', 2, 23.7299995, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10622, 'RICAR', 4, '1997-08-06', '1997-09-03', '1997-08-11', 3, 50.9700012, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10623, 'FRANK', 8, '1997-08-07', '1997-09-04', '1997-08-12', 2, 97.1800003, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10624, 'THECR', 4, '1997-08-07', '1997-09-04', '1997-08-19', 2, 94.8000031, 'The Cracker Box', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA'); +INSERT INTO orders VALUES (10625, 'ANATR', 3, '1997-08-08', '1997-09-05', '1997-08-14', 1, 43.9000015, 'Ana Trujillo Emparedados y helados', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico'); +INSERT INTO orders VALUES (10626, 'BERGS', 1, '1997-08-11', '1997-09-08', '1997-08-20', 2, 138.690002, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10627, 'SAVEA', 8, '1997-08-11', '1997-09-22', '1997-08-21', 3, 107.459999, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10628, 'BLONP', 4, '1997-08-12', '1997-09-09', '1997-08-20', 3, 30.3600006, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10629, 'GODOS', 4, '1997-08-12', '1997-09-09', '1997-08-20', 3, 85.4599991, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (10630, 'KOENE', 1, '1997-08-13', '1997-09-10', '1997-08-19', 2, 32.3499985, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10631, 'LAMAI', 8, '1997-08-14', '1997-09-11', '1997-08-15', 1, 0.870000005, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10632, 'WANDK', 8, '1997-08-14', '1997-09-11', '1997-08-19', 1, 41.3800011, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10633, 'ERNSH', 7, '1997-08-15', '1997-09-12', '1997-08-18', 3, 477.899994, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10634, 'FOLIG', 4, '1997-08-15', '1997-09-12', '1997-08-21', 3, 487.380005, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); +INSERT INTO orders VALUES (10635, 'MAGAA', 8, '1997-08-18', '1997-09-15', '1997-08-21', 3, 47.4599991, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10636, 'WARTH', 4, '1997-08-19', '1997-09-16', '1997-08-26', 1, 1.14999998, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10637, 'QUEEN', 6, '1997-08-19', '1997-09-16', '1997-08-26', 1, 201.289993, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10638, 'LINOD', 3, '1997-08-20', '1997-09-17', '1997-09-01', 1, 158.440002, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10639, 'SANTG', 7, '1997-08-20', '1997-09-17', '1997-08-27', 3, 38.6399994, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); +INSERT INTO orders VALUES (10640, 'WANDK', 4, '1997-08-21', '1997-09-18', '1997-08-28', 1, 23.5499992, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10641, 'HILAA', 4, '1997-08-22', '1997-09-19', '1997-08-26', 2, 179.610001, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10642, 'SIMOB', 7, '1997-08-22', '1997-09-19', '1997-09-05', 3, 41.8899994, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); +INSERT INTO orders VALUES (10643, 'ALFKI', 6, '1997-08-25', '1997-09-22', '1997-09-02', 1, 29.4599991, 'Alfreds Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); +INSERT INTO orders VALUES (10644, 'WELLI', 3, '1997-08-25', '1997-09-22', '1997-09-01', 2, 0.140000001, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10645, 'HANAR', 4, '1997-08-26', '1997-09-23', '1997-09-02', 1, 12.4099998, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10646, 'HUNGO', 9, '1997-08-27', '1997-10-08', '1997-09-03', 3, 142.330002, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10647, 'QUEDE', 4, '1997-08-27', '1997-09-10', '1997-09-03', 2, 45.5400009, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10648, 'RICAR', 5, '1997-08-28', '1997-10-09', '1997-09-09', 2, 14.25, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10649, 'MAISD', 5, '1997-08-28', '1997-09-25', '1997-08-29', 3, 6.19999981, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); +INSERT INTO orders VALUES (10650, 'FAMIA', 5, '1997-08-29', '1997-09-26', '1997-09-03', 3, 176.809998, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); +INSERT INTO orders VALUES (10651, 'WANDK', 8, '1997-09-01', '1997-09-29', '1997-09-11', 2, 20.6000004, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10652, 'GOURL', 4, '1997-09-01', '1997-09-29', '1997-09-08', 2, 7.13999987, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (10653, 'FRANK', 1, '1997-09-02', '1997-09-30', '1997-09-19', 1, 93.25, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10654, 'BERGS', 5, '1997-09-02', '1997-09-30', '1997-09-11', 1, 55.2599983, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10655, 'REGGC', 1, '1997-09-03', '1997-10-01', '1997-09-11', 2, 4.40999985, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10656, 'GREAL', 6, '1997-09-04', '1997-10-02', '1997-09-10', 1, 57.1500015, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (10657, 'SAVEA', 2, '1997-09-04', '1997-10-02', '1997-09-15', 2, 352.690002, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10658, 'QUICK', 4, '1997-09-05', '1997-10-03', '1997-09-08', 1, 364.149994, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10659, 'QUEEN', 7, '1997-09-05', '1997-10-03', '1997-09-10', 2, 105.809998, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10660, 'HUNGC', 8, '1997-09-08', '1997-10-06', '1997-10-15', 1, 111.290001, 'Hungry Coyote Import Store', 'City Center Plaza 516 Main St.', 'Elgin', 'OR', '97827', 'USA'); +INSERT INTO orders VALUES (10661, 'HUNGO', 7, '1997-09-09', '1997-10-07', '1997-09-15', 3, 17.5499992, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10662, 'LONEP', 3, '1997-09-09', '1997-10-07', '1997-09-18', 2, 1.27999997, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); +INSERT INTO orders VALUES (10663, 'BONAP', 2, '1997-09-10', '1997-09-24', '1997-10-03', 2, 113.150002, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10664, 'FURIB', 1, '1997-09-10', '1997-10-08', '1997-09-19', 3, 1.26999998, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); +INSERT INTO orders VALUES (10665, 'LONEP', 1, '1997-09-11', '1997-10-09', '1997-09-17', 2, 26.3099995, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); +INSERT INTO orders VALUES (10666, 'RICSU', 7, '1997-09-12', '1997-10-10', '1997-09-22', 2, 232.419998, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (10667, 'ERNSH', 7, '1997-09-12', '1997-10-10', '1997-09-19', 1, 78.0899963, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10668, 'WANDK', 1, '1997-09-15', '1997-10-13', '1997-09-23', 2, 47.2200012, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (10669, 'SIMOB', 2, '1997-09-15', '1997-10-13', '1997-09-22', 1, 24.3899994, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); +INSERT INTO orders VALUES (10670, 'FRANK', 4, '1997-09-16', '1997-10-14', '1997-09-18', 1, 203.479996, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10671, 'FRANR', 1, '1997-09-17', '1997-10-15', '1997-09-24', 1, 30.3400002, 'France restauration', '54, rue Royale', 'Nantes', NULL, '44000', 'France'); +INSERT INTO orders VALUES (10672, 'BERGS', 9, '1997-09-17', '1997-10-01', '1997-09-26', 2, 95.75, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10673, 'WILMK', 2, '1997-09-18', '1997-10-16', '1997-09-19', 1, 22.7600002, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); +INSERT INTO orders VALUES (10674, 'ISLAT', 4, '1997-09-18', '1997-10-16', '1997-09-30', 2, 0.899999976, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10675, 'FRANK', 5, '1997-09-19', '1997-10-17', '1997-09-23', 2, 31.8500004, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10676, 'TORTU', 2, '1997-09-22', '1997-10-20', '1997-09-29', 2, 2.00999999, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10677, 'ANTON', 1, '1997-09-22', '1997-10-20', '1997-09-26', 3, 4.03000021, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); +INSERT INTO orders VALUES (10678, 'SAVEA', 7, '1997-09-23', '1997-10-21', '1997-10-16', 3, 388.980011, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10679, 'BLONP', 8, '1997-09-23', '1997-10-21', '1997-09-30', 3, 27.9400005, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10680, 'OLDWO', 1, '1997-09-24', '1997-10-22', '1997-09-26', 1, 26.6100006, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10681, 'GREAL', 3, '1997-09-25', '1997-10-23', '1997-09-30', 3, 76.1299973, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (10682, 'ANTON', 3, '1997-09-25', '1997-10-23', '1997-10-01', 2, 36.1300011, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); +INSERT INTO orders VALUES (10683, 'DUMON', 2, '1997-09-26', '1997-10-24', '1997-10-01', 1, 4.4000001, 'Du monde entier', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France'); +INSERT INTO orders VALUES (10684, 'OTTIK', 3, '1997-09-26', '1997-10-24', '1997-09-30', 1, 145.630005, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (10685, 'GOURL', 4, '1997-09-29', '1997-10-13', '1997-10-03', 2, 33.75, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (10686, 'PICCO', 2, '1997-09-30', '1997-10-28', '1997-10-08', 1, 96.5, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10687, 'HUNGO', 9, '1997-09-30', '1997-10-28', '1997-10-30', 2, 296.429993, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10688, 'VAFFE', 4, '1997-10-01', '1997-10-15', '1997-10-07', 2, 299.089996, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10689, 'BERGS', 1, '1997-10-01', '1997-10-29', '1997-10-07', 2, 13.4200001, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10690, 'HANAR', 1, '1997-10-02', '1997-10-30', '1997-10-03', 1, 15.8000002, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10691, 'QUICK', 2, '1997-10-03', '1997-11-14', '1997-10-22', 2, 810.049988, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10692, 'ALFKI', 4, '1997-10-03', '1997-10-31', '1997-10-13', 2, 61.0200005, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); +INSERT INTO orders VALUES (10693, 'WHITC', 3, '1997-10-06', '1997-10-20', '1997-10-10', 3, 139.339996, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10694, 'QUICK', 8, '1997-10-06', '1997-11-03', '1997-10-09', 3, 398.359985, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10695, 'WILMK', 7, '1997-10-07', '1997-11-18', '1997-10-14', 1, 16.7199993, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); +INSERT INTO orders VALUES (10696, 'WHITC', 8, '1997-10-08', '1997-11-19', '1997-10-14', 3, 102.550003, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10697, 'LINOD', 3, '1997-10-08', '1997-11-05', '1997-10-14', 1, 45.5200005, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10698, 'ERNSH', 4, '1997-10-09', '1997-11-06', '1997-10-17', 1, 272.470001, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10699, 'MORGK', 3, '1997-10-09', '1997-11-06', '1997-10-13', 3, 0.579999983, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); +INSERT INTO orders VALUES (10700, 'SAVEA', 3, '1997-10-10', '1997-11-07', '1997-10-16', 1, 65.0999985, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10701, 'HUNGO', 6, '1997-10-13', '1997-10-27', '1997-10-15', 3, 220.309998, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10702, 'ALFKI', 4, '1997-10-13', '1997-11-24', '1997-10-21', 1, 23.9400005, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); +INSERT INTO orders VALUES (10703, 'FOLKO', 6, '1997-10-14', '1997-11-11', '1997-10-20', 2, 152.300003, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10704, 'QUEEN', 6, '1997-10-14', '1997-11-11', '1997-11-07', 1, 4.78000021, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10705, 'HILAA', 9, '1997-10-15', '1997-11-12', '1997-11-18', 2, 3.51999998, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10706, 'OLDWO', 8, '1997-10-16', '1997-11-13', '1997-10-21', 3, 135.630005, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10707, 'AROUT', 4, '1997-10-16', '1997-10-30', '1997-10-23', 3, 21.7399998, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10708, 'THEBI', 6, '1997-10-17', '1997-11-28', '1997-11-05', 2, 2.96000004, 'The Big Cheese', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA'); +INSERT INTO orders VALUES (10709, 'GOURL', 1, '1997-10-17', '1997-11-14', '1997-11-20', 3, 210.800003, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (10710, 'FRANS', 1, '1997-10-20', '1997-11-17', '1997-10-23', 1, 4.98000002, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); +INSERT INTO orders VALUES (10711, 'SAVEA', 5, '1997-10-21', '1997-12-02', '1997-10-29', 2, 52.4099998, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10712, 'HUNGO', 3, '1997-10-21', '1997-11-18', '1997-10-31', 1, 89.9300003, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10713, 'SAVEA', 1, '1997-10-22', '1997-11-19', '1997-10-24', 1, 167.050003, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10714, 'SAVEA', 5, '1997-10-22', '1997-11-19', '1997-10-27', 3, 24.4899998, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10715, 'BONAP', 3, '1997-10-23', '1997-11-06', '1997-10-29', 1, 63.2000008, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10716, 'RANCH', 4, '1997-10-24', '1997-11-21', '1997-10-27', 2, 22.5699997, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10717, 'FRANK', 1, '1997-10-24', '1997-11-21', '1997-10-29', 2, 59.25, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10718, 'KOENE', 1, '1997-10-27', '1997-11-24', '1997-10-29', 3, 170.880005, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10719, 'LETSS', 8, '1997-10-27', '1997-11-24', '1997-11-05', 2, 51.4399986, 'Let''s Stop N Shop', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA'); +INSERT INTO orders VALUES (10720, 'QUEDE', 8, '1997-10-28', '1997-11-11', '1997-11-05', 2, 9.52999973, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10721, 'QUICK', 5, '1997-10-29', '1997-11-26', '1997-10-31', 3, 48.9199982, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10722, 'SAVEA', 8, '1997-10-29', '1997-12-10', '1997-11-04', 1, 74.5800018, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10723, 'WHITC', 3, '1997-10-30', '1997-11-27', '1997-11-25', 1, 21.7199993, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10724, 'MEREP', 8, '1997-10-30', '1997-12-11', '1997-11-05', 2, 57.75, 'Mère Paillarde', '43 rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada'); +INSERT INTO orders VALUES (10725, 'FAMIA', 4, '1997-10-31', '1997-11-28', '1997-11-05', 3, 10.8299999, 'Familia Arquibaldo', 'Rua Orós, 92', 'Sao Paulo', 'SP', '05442-030', 'Brazil'); +INSERT INTO orders VALUES (10726, 'EASTC', 4, '1997-11-03', '1997-11-17', '1997-12-05', 1, 16.5599995, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); +INSERT INTO orders VALUES (10727, 'REGGC', 2, '1997-11-03', '1997-12-01', '1997-12-05', 1, 89.9000015, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10728, 'QUEEN', 4, '1997-11-04', '1997-12-02', '1997-11-11', 2, 58.3300018, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10729, 'LINOD', 8, '1997-11-04', '1997-12-16', '1997-11-14', 3, 141.059998, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10730, 'BONAP', 5, '1997-11-05', '1997-12-03', '1997-11-14', 1, 20.1200008, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10731, 'CHOPS', 7, '1997-11-06', '1997-12-04', '1997-11-14', 1, 96.6500015, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); +INSERT INTO orders VALUES (10732, 'BONAP', 3, '1997-11-06', '1997-12-04', '1997-11-07', 1, 16.9699993, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10733, 'BERGS', 1, '1997-11-07', '1997-12-05', '1997-11-10', 3, 110.110001, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10734, 'GOURL', 2, '1997-11-07', '1997-12-05', '1997-11-12', 3, 1.63, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (10735, 'LETSS', 6, '1997-11-10', '1997-12-08', '1997-11-21', 2, 45.9700012, 'Let''s Stop N Shop', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA'); +INSERT INTO orders VALUES (10736, 'HUNGO', 9, '1997-11-11', '1997-12-09', '1997-11-21', 2, 44.0999985, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10737, 'VINET', 2, '1997-11-11', '1997-12-09', '1997-11-18', 2, 7.78999996, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); +INSERT INTO orders VALUES (10738, 'SPECD', 2, '1997-11-12', '1997-12-10', '1997-11-18', 1, 2.91000009, 'Spécialités du monde', '25, rue Lauriston', 'Paris', NULL, '75016', 'France'); +INSERT INTO orders VALUES (10739, 'VINET', 3, '1997-11-12', '1997-12-10', '1997-11-17', 3, 11.0799999, 'Vins et alcools Chevalier', '59 rue de l''Abbaye', 'Reims', NULL, '51100', 'France'); +INSERT INTO orders VALUES (10740, 'WHITC', 4, '1997-11-13', '1997-12-11', '1997-11-25', 2, 81.8799973, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10741, 'AROUT', 4, '1997-11-14', '1997-11-28', '1997-11-18', 3, 10.96, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10742, 'BOTTM', 3, '1997-11-14', '1997-12-12', '1997-11-18', 3, 243.729996, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10743, 'AROUT', 1, '1997-11-17', '1997-12-15', '1997-11-21', 2, 23.7199993, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10744, 'VAFFE', 6, '1997-11-17', '1997-12-15', '1997-11-24', 1, 69.1900024, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10745, 'QUICK', 9, '1997-11-18', '1997-12-16', '1997-11-27', 1, 3.51999998, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10746, 'CHOPS', 1, '1997-11-19', '1997-12-17', '1997-11-21', 3, 31.4300003, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); +INSERT INTO orders VALUES (10747, 'PICCO', 6, '1997-11-19', '1997-12-17', '1997-11-26', 1, 117.330002, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10748, 'SAVEA', 3, '1997-11-20', '1997-12-18', '1997-11-28', 1, 232.550003, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10749, 'ISLAT', 4, '1997-11-20', '1997-12-18', '1997-12-19', 2, 61.5299988, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10750, 'WARTH', 9, '1997-11-21', '1997-12-19', '1997-11-24', 1, 79.3000031, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10751, 'RICSU', 3, '1997-11-24', '1997-12-22', '1997-12-03', 3, 130.789993, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (10752, 'NORTS', 2, '1997-11-24', '1997-12-22', '1997-11-28', 3, 1.38999999, 'North/South', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK'); +INSERT INTO orders VALUES (10753, 'FRANS', 3, '1997-11-25', '1997-12-23', '1997-11-27', 1, 7.69999981, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); +INSERT INTO orders VALUES (10754, 'MAGAA', 6, '1997-11-25', '1997-12-23', '1997-11-27', 3, 2.38000011, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10755, 'BONAP', 4, '1997-11-26', '1997-12-24', '1997-11-28', 2, 16.7099991, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10756, 'SPLIR', 8, '1997-11-27', '1997-12-25', '1997-12-02', 2, 73.2099991, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10757, 'SAVEA', 6, '1997-11-27', '1997-12-25', '1997-12-15', 1, 8.18999958, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10758, 'RICSU', 3, '1997-11-28', '1997-12-26', '1997-12-04', 3, 138.169998, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (10759, 'ANATR', 3, '1997-11-28', '1997-12-26', '1997-12-12', 3, 11.9899998, 'Ana Trujillo Emparedados y helados', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico'); +INSERT INTO orders VALUES (10760, 'MAISD', 4, '1997-12-01', '1997-12-29', '1997-12-10', 1, 155.639999, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); +INSERT INTO orders VALUES (10761, 'RATTC', 5, '1997-12-02', '1997-12-30', '1997-12-08', 2, 18.6599998, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10762, 'FOLKO', 3, '1997-12-02', '1997-12-30', '1997-12-09', 1, 328.73999, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10763, 'FOLIG', 3, '1997-12-03', '1997-12-31', '1997-12-08', 3, 37.3499985, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); +INSERT INTO orders VALUES (10764, 'ERNSH', 6, '1997-12-03', '1997-12-31', '1997-12-08', 3, 145.449997, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10765, 'QUICK', 3, '1997-12-04', '1998-01-01', '1997-12-09', 3, 42.7400017, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10766, 'OTTIK', 4, '1997-12-05', '1998-01-02', '1997-12-09', 1, 157.550003, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (10767, 'SUPRD', 4, '1997-12-05', '1998-01-02', '1997-12-15', 3, 1.59000003, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10768, 'AROUT', 3, '1997-12-08', '1998-01-05', '1997-12-15', 2, 146.320007, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10769, 'VAFFE', 3, '1997-12-08', '1998-01-05', '1997-12-12', 1, 65.0599976, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10770, 'HANAR', 8, '1997-12-09', '1998-01-06', '1997-12-17', 3, 5.32000017, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10771, 'ERNSH', 9, '1997-12-10', '1998-01-07', '1998-01-02', 2, 11.1899996, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10772, 'LEHMS', 3, '1997-12-10', '1998-01-07', '1997-12-19', 2, 91.2799988, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10773, 'ERNSH', 1, '1997-12-11', '1998-01-08', '1997-12-16', 3, 96.4300003, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10774, 'FOLKO', 4, '1997-12-11', '1997-12-25', '1997-12-12', 1, 48.2000008, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10775, 'THECR', 7, '1997-12-12', '1998-01-09', '1997-12-26', 1, 20.25, 'The Cracker Box', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA'); +INSERT INTO orders VALUES (10776, 'ERNSH', 1, '1997-12-15', '1998-01-12', '1997-12-18', 3, 351.529999, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10777, 'GOURL', 7, '1997-12-15', '1997-12-29', '1998-01-21', 2, 3.00999999, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (10778, 'BERGS', 3, '1997-12-16', '1998-01-13', '1997-12-24', 1, 6.78999996, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10779, 'MORGK', 3, '1997-12-16', '1998-01-13', '1998-01-14', 2, 58.1300011, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); +INSERT INTO orders VALUES (10780, 'LILAS', 2, '1997-12-16', '1997-12-30', '1997-12-25', 1, 42.1300011, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10781, 'WARTH', 2, '1997-12-17', '1998-01-14', '1997-12-19', 3, 73.1600037, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (10782, 'CACTU', 9, '1997-12-17', '1998-01-14', '1997-12-22', 3, 1.10000002, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10783, 'HANAR', 4, '1997-12-18', '1998-01-15', '1997-12-19', 2, 124.980003, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10784, 'MAGAA', 4, '1997-12-18', '1998-01-15', '1997-12-22', 3, 70.0899963, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10785, 'GROSR', 1, '1997-12-18', '1998-01-15', '1997-12-24', 3, 1.50999999, 'GROSELLA-Restaurante', '5ª Ave. Los Palos Grandes', 'Caracas', 'DF', '1081', 'Venezuela'); +INSERT INTO orders VALUES (10786, 'QUEEN', 8, '1997-12-19', '1998-01-16', '1997-12-23', 1, 110.870003, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10787, 'LAMAI', 2, '1997-12-19', '1998-01-02', '1997-12-26', 1, 249.929993, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10788, 'QUICK', 1, '1997-12-22', '1998-01-19', '1998-01-19', 2, 42.7000008, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10789, 'FOLIG', 1, '1997-12-22', '1998-01-19', '1997-12-31', 2, 100.599998, 'Folies gourmandes', '184, chaussée de Tournai', 'Lille', NULL, '59000', 'France'); +INSERT INTO orders VALUES (10790, 'GOURL', 6, '1997-12-22', '1998-01-19', '1997-12-26', 1, 28.2299995, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (10791, 'FRANK', 6, '1997-12-23', '1998-01-20', '1998-01-01', 2, 16.8500004, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10792, 'WOLZA', 1, '1997-12-23', '1998-01-20', '1997-12-31', 3, 23.7900009, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); +INSERT INTO orders VALUES (10793, 'AROUT', 3, '1997-12-24', '1998-01-21', '1998-01-08', 3, 4.51999998, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10794, 'QUEDE', 6, '1997-12-24', '1998-01-21', '1998-01-02', 1, 21.4899998, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10795, 'ERNSH', 8, '1997-12-24', '1998-01-21', '1998-01-20', 2, 126.660004, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10796, 'HILAA', 3, '1997-12-25', '1998-01-22', '1998-01-14', 1, 26.5200005, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10797, 'DRACD', 7, '1997-12-25', '1998-01-22', '1998-01-05', 2, 33.3499985, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); +INSERT INTO orders VALUES (10798, 'ISLAT', 2, '1997-12-26', '1998-01-23', '1998-01-05', 1, 2.32999992, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10799, 'KOENE', 9, '1997-12-26', '1998-02-06', '1998-01-05', 3, 30.7600002, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10800, 'SEVES', 1, '1997-12-26', '1998-01-23', '1998-01-05', 3, 137.440002, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10801, 'BOLID', 4, '1997-12-29', '1998-01-26', '1997-12-31', 2, 97.0899963, 'Bólido Comidas preparadas', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain'); +INSERT INTO orders VALUES (10802, 'SIMOB', 4, '1997-12-29', '1998-01-26', '1998-01-02', 2, 257.26001, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); +INSERT INTO orders VALUES (10803, 'WELLI', 4, '1997-12-30', '1998-01-27', '1998-01-06', 1, 55.2299995, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10804, 'SEVES', 6, '1997-12-30', '1998-01-27', '1998-01-07', 2, 27.3299999, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10805, 'THEBI', 2, '1997-12-30', '1998-01-27', '1998-01-09', 3, 237.339996, 'The Big Cheese', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA'); +INSERT INTO orders VALUES (10806, 'VICTE', 3, '1997-12-31', '1998-01-28', '1998-01-05', 2, 22.1100006, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10807, 'FRANS', 4, '1997-12-31', '1998-01-28', '1998-01-30', 1, 1.36000001, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); +INSERT INTO orders VALUES (10808, 'OLDWO', 2, '1998-01-01', '1998-01-29', '1998-01-09', 3, 45.5299988, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10809, 'WELLI', 7, '1998-01-01', '1998-01-29', '1998-01-07', 1, 4.86999989, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10810, 'LAUGB', 2, '1998-01-01', '1998-01-29', '1998-01-07', 3, 4.32999992, 'Laughing Bacchus Wine Cellars', '2319 Elm St.', 'Vancouver', 'BC', 'V3F 2K1', 'Canada'); +INSERT INTO orders VALUES (10811, 'LINOD', 8, '1998-01-02', '1998-01-30', '1998-01-08', 1, 31.2199993, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10812, 'REGGC', 5, '1998-01-02', '1998-01-30', '1998-01-12', 1, 59.7799988, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10813, 'RICAR', 1, '1998-01-05', '1998-02-02', '1998-01-09', 1, 47.3800011, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10814, 'VICTE', 3, '1998-01-05', '1998-02-02', '1998-01-14', 3, 130.940002, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10815, 'SAVEA', 2, '1998-01-05', '1998-02-02', '1998-01-14', 3, 14.6199999, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10816, 'GREAL', 4, '1998-01-06', '1998-02-03', '1998-02-04', 2, 719.780029, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (10817, 'KOENE', 3, '1998-01-06', '1998-01-20', '1998-01-13', 2, 306.070007, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10818, 'MAGAA', 7, '1998-01-07', '1998-02-04', '1998-01-12', 3, 65.4800034, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10819, 'CACTU', 2, '1998-01-07', '1998-02-04', '1998-01-16', 3, 19.7600002, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10820, 'RATTC', 3, '1998-01-07', '1998-02-04', '1998-01-13', 2, 37.5200005, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10821, 'SPLIR', 1, '1998-01-08', '1998-02-05', '1998-01-15', 1, 36.6800003, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10822, 'TRAIH', 6, '1998-01-08', '1998-02-05', '1998-01-16', 3, 7, 'Trail''s Head Gourmet Provisioners', '722 DaVinci Blvd.', 'Kirkland', 'WA', '98034', 'USA'); +INSERT INTO orders VALUES (10823, 'LILAS', 5, '1998-01-09', '1998-02-06', '1998-01-13', 2, 163.970001, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10824, 'FOLKO', 8, '1998-01-09', '1998-02-06', '1998-01-30', 1, 1.23000002, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10825, 'DRACD', 1, '1998-01-09', '1998-02-06', '1998-01-14', 1, 79.25, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); +INSERT INTO orders VALUES (10826, 'BLONP', 6, '1998-01-12', '1998-02-09', '1998-02-06', 1, 7.09000015, 'Blondel père et fils', '24, place Kléber', 'Strasbourg', NULL, '67000', 'France'); +INSERT INTO orders VALUES (10827, 'BONAP', 1, '1998-01-12', '1998-01-26', '1998-02-06', 2, 63.5400009, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10828, 'RANCH', 9, '1998-01-13', '1998-01-27', '1998-02-04', 1, 90.8499985, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10829, 'ISLAT', 9, '1998-01-13', '1998-02-10', '1998-01-23', 1, 154.720001, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10830, 'TRADH', 4, '1998-01-13', '1998-02-24', '1998-01-21', 2, 81.8300018, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); +INSERT INTO orders VALUES (10831, 'SANTG', 3, '1998-01-14', '1998-02-11', '1998-01-23', 2, 72.1900024, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); +INSERT INTO orders VALUES (10832, 'LAMAI', 2, '1998-01-14', '1998-02-11', '1998-01-19', 2, 43.2599983, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10833, 'OTTIK', 6, '1998-01-15', '1998-02-12', '1998-01-23', 2, 71.4899979, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (10834, 'TRADH', 1, '1998-01-15', '1998-02-12', '1998-01-19', 3, 29.7800007, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); +INSERT INTO orders VALUES (10835, 'ALFKI', 1, '1998-01-15', '1998-02-12', '1998-01-21', 3, 69.5299988, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); +INSERT INTO orders VALUES (10836, 'ERNSH', 7, '1998-01-16', '1998-02-13', '1998-01-21', 1, 411.880005, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10837, 'BERGS', 9, '1998-01-16', '1998-02-13', '1998-01-23', 3, 13.3199997, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10838, 'LINOD', 3, '1998-01-19', '1998-02-16', '1998-01-23', 3, 59.2799988, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10839, 'TRADH', 3, '1998-01-19', '1998-02-16', '1998-01-22', 3, 35.4300003, 'Tradiçao Hipermercados', 'Av. Inês de Castro, 414', 'Sao Paulo', 'SP', '05634-030', 'Brazil'); +INSERT INTO orders VALUES (10840, 'LINOD', 4, '1998-01-19', '1998-03-02', '1998-02-16', 2, 2.71000004, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10841, 'SUPRD', 5, '1998-01-20', '1998-02-17', '1998-01-29', 2, 424.299988, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10842, 'TORTU', 1, '1998-01-20', '1998-02-17', '1998-01-29', 3, 54.4199982, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10843, 'VICTE', 4, '1998-01-21', '1998-02-18', '1998-01-26', 2, 9.26000023, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10844, 'PICCO', 8, '1998-01-21', '1998-02-18', '1998-01-26', 2, 25.2199993, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (10845, 'QUICK', 8, '1998-01-21', '1998-02-04', '1998-01-30', 1, 212.979996, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10846, 'SUPRD', 2, '1998-01-22', '1998-03-05', '1998-01-23', 3, 56.4599991, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10847, 'SAVEA', 4, '1998-01-22', '1998-02-05', '1998-02-10', 3, 487.570007, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10848, 'CONSH', 7, '1998-01-23', '1998-02-20', '1998-01-29', 2, 38.2400017, 'Consolidated Holdings', 'Berkeley Gardens 12 Brewery', 'London', NULL, 'WX1 6LT', 'UK'); +INSERT INTO orders VALUES (10849, 'KOENE', 9, '1998-01-23', '1998-02-20', '1998-01-30', 2, 0.560000002, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10850, 'VICTE', 1, '1998-01-23', '1998-03-06', '1998-01-30', 1, 49.1899986, 'Victuailles en stock', '2, rue du Commerce', 'Lyon', NULL, '69004', 'France'); +INSERT INTO orders VALUES (10851, 'RICAR', 5, '1998-01-26', '1998-02-23', '1998-02-02', 1, 160.550003, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10852, 'RATTC', 8, '1998-01-26', '1998-02-09', '1998-01-30', 1, 174.050003, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10853, 'BLAUS', 9, '1998-01-27', '1998-02-24', '1998-02-03', 2, 53.8300018, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); +INSERT INTO orders VALUES (10854, 'ERNSH', 3, '1998-01-27', '1998-02-24', '1998-02-05', 2, 100.220001, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10855, 'OLDWO', 3, '1998-01-27', '1998-02-24', '1998-02-04', 1, 170.970001, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10856, 'ANTON', 3, '1998-01-28', '1998-02-25', '1998-02-10', 2, 58.4300003, 'Antonio Moreno Taquería', 'Mataderos 2312', 'México D.F.', NULL, '05023', 'Mexico'); +INSERT INTO orders VALUES (10857, 'BERGS', 8, '1998-01-28', '1998-02-25', '1998-02-06', 2, 188.850006, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10858, 'LACOR', 2, '1998-01-29', '1998-02-26', '1998-02-03', 1, 52.5099983, 'La corne d''abondance', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France'); +INSERT INTO orders VALUES (10859, 'FRANK', 1, '1998-01-29', '1998-02-26', '1998-02-02', 2, 76.0999985, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10860, 'FRANR', 3, '1998-01-29', '1998-02-26', '1998-02-04', 3, 19.2600002, 'France restauration', '54, rue Royale', 'Nantes', NULL, '44000', 'France'); +INSERT INTO orders VALUES (10861, 'WHITC', 4, '1998-01-30', '1998-02-27', '1998-02-17', 2, 14.9300003, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10862, 'LEHMS', 8, '1998-01-30', '1998-03-13', '1998-02-02', 2, 53.2299995, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10863, 'HILAA', 4, '1998-02-02', '1998-03-02', '1998-02-17', 2, 30.2600002, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10864, 'AROUT', 4, '1998-02-02', '1998-03-02', '1998-02-09', 2, 3.03999996, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10865, 'QUICK', 2, '1998-02-02', '1998-02-16', '1998-02-12', 1, 348.140015, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10866, 'BERGS', 5, '1998-02-03', '1998-03-03', '1998-02-12', 1, 109.110001, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10867, 'LONEP', 6, '1998-02-03', '1998-03-17', '1998-02-11', 1, 1.92999995, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); +INSERT INTO orders VALUES (10868, 'QUEEN', 7, '1998-02-04', '1998-03-04', '1998-02-23', 2, 191.270004, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10869, 'SEVES', 5, '1998-02-04', '1998-03-04', '1998-02-09', 1, 143.279999, 'Seven Seas Imports', '90 Wadhurst Rd.', 'London', NULL, 'OX15 4NB', 'UK'); +INSERT INTO orders VALUES (10870, 'WOLZA', 5, '1998-02-04', '1998-03-04', '1998-02-13', 3, 12.04, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); +INSERT INTO orders VALUES (10871, 'BONAP', 9, '1998-02-05', '1998-03-05', '1998-02-10', 2, 112.269997, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10872, 'GODOS', 5, '1998-02-05', '1998-03-05', '1998-02-09', 2, 175.320007, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (10873, 'WILMK', 4, '1998-02-06', '1998-03-06', '1998-02-09', 1, 0.819999993, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); +INSERT INTO orders VALUES (10874, 'GODOS', 5, '1998-02-06', '1998-03-06', '1998-02-11', 2, 19.5799999, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (10875, 'BERGS', 4, '1998-02-06', '1998-03-06', '1998-03-03', 2, 32.3699989, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10876, 'BONAP', 7, '1998-02-09', '1998-03-09', '1998-02-12', 3, 60.4199982, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10877, 'RICAR', 1, '1998-02-09', '1998-03-09', '1998-02-19', 1, 38.0600014, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (10878, 'QUICK', 4, '1998-02-10', '1998-03-10', '1998-02-12', 1, 46.6899986, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10879, 'WILMK', 3, '1998-02-10', '1998-03-10', '1998-02-12', 3, 8.5, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); +INSERT INTO orders VALUES (10880, 'FOLKO', 7, '1998-02-10', '1998-03-24', '1998-02-18', 1, 88.0100021, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10881, 'CACTU', 4, '1998-02-11', '1998-03-11', '1998-02-18', 1, 2.83999991, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10882, 'SAVEA', 4, '1998-02-11', '1998-03-11', '1998-02-20', 3, 23.1000004, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10883, 'LONEP', 8, '1998-02-12', '1998-03-12', '1998-02-20', 3, 0.529999971, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); +INSERT INTO orders VALUES (10884, 'LETSS', 4, '1998-02-12', '1998-03-12', '1998-02-13', 2, 90.9700012, 'Let''s Stop N Shop', '87 Polk St. Suite 5', 'San Francisco', 'CA', '94117', 'USA'); +INSERT INTO orders VALUES (10885, 'SUPRD', 6, '1998-02-12', '1998-03-12', '1998-02-18', 3, 5.63999987, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10886, 'HANAR', 1, '1998-02-13', '1998-03-13', '1998-03-02', 1, 4.98999977, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10887, 'GALED', 8, '1998-02-13', '1998-03-13', '1998-02-16', 3, 1.25, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); +INSERT INTO orders VALUES (10888, 'GODOS', 1, '1998-02-16', '1998-03-16', '1998-02-23', 2, 51.8699989, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (10889, 'RATTC', 9, '1998-02-16', '1998-03-16', '1998-02-23', 3, 280.609985, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10890, 'DUMON', 7, '1998-02-16', '1998-03-16', '1998-02-18', 1, 32.7599983, 'Du monde entier', '67, rue des Cinquante Otages', 'Nantes', NULL, '44000', 'France'); +INSERT INTO orders VALUES (10891, 'LEHMS', 7, '1998-02-17', '1998-03-17', '1998-02-19', 2, 20.3700008, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10892, 'MAISD', 4, '1998-02-17', '1998-03-17', '1998-02-19', 2, 120.269997, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); +INSERT INTO orders VALUES (10893, 'KOENE', 9, '1998-02-18', '1998-03-18', '1998-02-20', 2, 77.7799988, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (10894, 'SAVEA', 1, '1998-02-18', '1998-03-18', '1998-02-20', 1, 116.129997, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10895, 'ERNSH', 3, '1998-02-18', '1998-03-18', '1998-02-23', 1, 162.75, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10896, 'MAISD', 7, '1998-02-19', '1998-03-19', '1998-02-27', 3, 32.4500008, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); +INSERT INTO orders VALUES (10897, 'HUNGO', 3, '1998-02-19', '1998-03-19', '1998-02-25', 2, 603.539978, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10898, 'OCEAN', 4, '1998-02-20', '1998-03-20', '1998-03-06', 2, 1.26999998, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10899, 'LILAS', 5, '1998-02-20', '1998-03-20', '1998-02-26', 3, 1.21000004, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10900, 'WELLI', 1, '1998-02-20', '1998-03-20', '1998-03-04', 2, 1.65999997, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10901, 'HILAA', 4, '1998-02-23', '1998-03-23', '1998-02-26', 1, 62.0900002, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10902, 'FOLKO', 1, '1998-02-23', '1998-03-23', '1998-03-03', 1, 44.1500015, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10903, 'HANAR', 3, '1998-02-24', '1998-03-24', '1998-03-04', 3, 36.7099991, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10904, 'WHITC', 3, '1998-02-24', '1998-03-24', '1998-02-27', 3, 162.949997, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (10905, 'WELLI', 9, '1998-02-24', '1998-03-24', '1998-03-06', 2, 13.7200003, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10906, 'WOLZA', 4, '1998-02-25', '1998-03-11', '1998-03-03', 3, 26.2900009, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); +INSERT INTO orders VALUES (10907, 'SPECD', 6, '1998-02-25', '1998-03-25', '1998-02-27', 3, 9.18999958, 'Spécialités du monde', '25, rue Lauriston', 'Paris', NULL, '75016', 'France'); +INSERT INTO orders VALUES (10908, 'REGGC', 4, '1998-02-26', '1998-03-26', '1998-03-06', 2, 32.9599991, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10909, 'SANTG', 1, '1998-02-26', '1998-03-26', '1998-03-10', 2, 53.0499992, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); +INSERT INTO orders VALUES (10910, 'WILMK', 1, '1998-02-26', '1998-03-26', '1998-03-04', 3, 38.1100006, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); +INSERT INTO orders VALUES (10911, 'GODOS', 3, '1998-02-26', '1998-03-26', '1998-03-05', 1, 38.1899986, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (10912, 'HUNGO', 2, '1998-02-26', '1998-03-26', '1998-03-18', 2, 580.909973, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10913, 'QUEEN', 4, '1998-02-26', '1998-03-26', '1998-03-04', 1, 33.0499992, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10914, 'QUEEN', 6, '1998-02-27', '1998-03-27', '1998-03-02', 1, 21.1900005, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10915, 'TORTU', 2, '1998-02-27', '1998-03-27', '1998-03-02', 2, 3.50999999, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10916, 'RANCH', 1, '1998-02-27', '1998-03-27', '1998-03-09', 2, 63.7700005, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10917, 'ROMEY', 4, '1998-03-02', '1998-03-30', '1998-03-11', 2, 8.28999996, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); +INSERT INTO orders VALUES (10918, 'BOTTM', 3, '1998-03-02', '1998-03-30', '1998-03-11', 3, 48.8300018, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10919, 'LINOD', 2, '1998-03-02', '1998-03-30', '1998-03-04', 2, 19.7999992, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10920, 'AROUT', 4, '1998-03-03', '1998-03-31', '1998-03-09', 2, 29.6100006, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10921, 'VAFFE', 1, '1998-03-03', '1998-04-14', '1998-03-09', 1, 176.479996, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10922, 'HANAR', 5, '1998-03-03', '1998-03-31', '1998-03-05', 3, 62.7400017, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10923, 'LAMAI', 7, '1998-03-03', '1998-04-14', '1998-03-13', 3, 68.2600021, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (10924, 'BERGS', 3, '1998-03-04', '1998-04-01', '1998-04-08', 2, 151.520004, 'Berglunds snabbköp', 'Berguvsvägen 8', 'Luleå', NULL, 'S-958 22', 'Sweden'); +INSERT INTO orders VALUES (10925, 'HANAR', 3, '1998-03-04', '1998-04-01', '1998-03-13', 1, 2.26999998, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10926, 'ANATR', 4, '1998-03-04', '1998-04-01', '1998-03-11', 3, 39.9199982, 'Ana Trujillo Emparedados y helados', 'Avda. de la Constitución 2222', 'México D.F.', NULL, '05021', 'Mexico'); +INSERT INTO orders VALUES (10927, 'LACOR', 4, '1998-03-05', '1998-04-02', '1998-04-08', 1, 19.7900009, 'La corne d''abondance', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France'); +INSERT INTO orders VALUES (10928, 'GALED', 1, '1998-03-05', '1998-04-02', '1998-03-18', 1, 1.36000001, 'Galería del gastronómo', 'Rambla de Cataluña, 23', 'Barcelona', NULL, '8022', 'Spain'); +INSERT INTO orders VALUES (10929, 'FRANK', 6, '1998-03-05', '1998-04-02', '1998-03-12', 1, 33.9300003, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (10930, 'SUPRD', 4, '1998-03-06', '1998-04-17', '1998-03-18', 3, 15.5500002, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (10931, 'RICSU', 4, '1998-03-06', '1998-03-20', '1998-03-19', 2, 13.6000004, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (10932, 'BONAP', 8, '1998-03-06', '1998-04-03', '1998-03-24', 1, 134.639999, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10933, 'ISLAT', 6, '1998-03-06', '1998-04-03', '1998-03-16', 3, 54.1500015, 'Island Trading', 'Garden House Crowther Way', 'Cowes', 'Isle of Wight', 'PO31 7PJ', 'UK'); +INSERT INTO orders VALUES (10934, 'LEHMS', 3, '1998-03-09', '1998-04-06', '1998-03-12', 3, 32.0099983, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (10935, 'WELLI', 4, '1998-03-09', '1998-04-06', '1998-03-18', 3, 47.5900002, 'Wellington Importadora', 'Rua do Mercado, 12', 'Resende', 'SP', '08737-363', 'Brazil'); +INSERT INTO orders VALUES (10936, 'GREAL', 3, '1998-03-09', '1998-04-06', '1998-03-18', 2, 33.6800003, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (10937, 'CACTU', 7, '1998-03-10', '1998-03-24', '1998-03-13', 3, 31.5100002, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10938, 'QUICK', 3, '1998-03-10', '1998-04-07', '1998-03-16', 2, 31.8899994, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10939, 'MAGAA', 2, '1998-03-10', '1998-04-07', '1998-03-13', 2, 76.3300018, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10940, 'BONAP', 8, '1998-03-11', '1998-04-08', '1998-03-23', 3, 19.7700005, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (10941, 'SAVEA', 7, '1998-03-11', '1998-04-08', '1998-03-20', 2, 400.809998, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10942, 'REGGC', 9, '1998-03-11', '1998-04-08', '1998-03-18', 3, 17.9500008, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (10943, 'BSBEV', 4, '1998-03-11', '1998-04-08', '1998-03-19', 2, 2.17000008, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10944, 'BOTTM', 6, '1998-03-12', '1998-03-26', '1998-03-13', 3, 52.9199982, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10945, 'MORGK', 4, '1998-03-12', '1998-04-09', '1998-03-18', 1, 10.2200003, 'Morgenstern Gesundkost', 'Heerstr. 22', 'Leipzig', NULL, '04179', 'Germany'); +INSERT INTO orders VALUES (10946, 'VAFFE', 1, '1998-03-12', '1998-04-09', '1998-03-19', 2, 27.2000008, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10947, 'BSBEV', 3, '1998-03-13', '1998-04-10', '1998-03-16', 2, 3.25999999, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (10948, 'GODOS', 3, '1998-03-13', '1998-04-10', '1998-03-19', 3, 23.3899994, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (10949, 'BOTTM', 2, '1998-03-13', '1998-04-10', '1998-03-17', 3, 74.4400024, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10950, 'MAGAA', 1, '1998-03-16', '1998-04-13', '1998-03-23', 2, 2.5, 'Magazzini Alimentari Riuniti', 'Via Ludovico il Moro 22', 'Bergamo', NULL, '24100', 'Italy'); +INSERT INTO orders VALUES (10951, 'RICSU', 9, '1998-03-16', '1998-04-27', '1998-04-07', 2, 30.8500004, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (10952, 'ALFKI', 1, '1998-03-16', '1998-04-27', '1998-03-24', 1, 40.4199982, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); +INSERT INTO orders VALUES (10953, 'AROUT', 9, '1998-03-16', '1998-03-30', '1998-03-25', 2, 23.7199993, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (10954, 'LINOD', 5, '1998-03-17', '1998-04-28', '1998-03-20', 1, 27.9099998, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (10955, 'FOLKO', 8, '1998-03-17', '1998-04-14', '1998-03-20', 2, 3.25999999, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10956, 'BLAUS', 6, '1998-03-17', '1998-04-28', '1998-03-20', 2, 44.6500015, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); +INSERT INTO orders VALUES (10957, 'HILAA', 8, '1998-03-18', '1998-04-15', '1998-03-27', 3, 105.360001, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10958, 'OCEAN', 7, '1998-03-18', '1998-04-15', '1998-03-27', 2, 49.5600014, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10959, 'GOURL', 6, '1998-03-18', '1998-04-29', '1998-03-23', 2, 4.98000002, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (10960, 'HILAA', 3, '1998-03-19', '1998-04-02', '1998-04-08', 1, 2.07999992, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10961, 'QUEEN', 8, '1998-03-19', '1998-04-16', '1998-03-30', 1, 104.470001, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (10962, 'QUICK', 8, '1998-03-19', '1998-04-16', '1998-03-23', 2, 275.790009, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10963, 'FURIB', 9, '1998-03-19', '1998-04-16', '1998-03-26', 3, 2.70000005, 'Furia Bacalhau e Frutos do Mar', 'Jardim das rosas n. 32', 'Lisboa', NULL, '1675', 'Portugal'); +INSERT INTO orders VALUES (10964, 'SPECD', 3, '1998-03-20', '1998-04-17', '1998-03-24', 2, 87.3799973, 'Spécialités du monde', '25, rue Lauriston', 'Paris', NULL, '75016', 'France'); +INSERT INTO orders VALUES (10965, 'OLDWO', 6, '1998-03-20', '1998-04-17', '1998-03-30', 3, 144.380005, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (10966, 'CHOPS', 4, '1998-03-20', '1998-04-17', '1998-04-08', 1, 27.1900005, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); +INSERT INTO orders VALUES (10967, 'TOMSP', 2, '1998-03-23', '1998-04-20', '1998-04-02', 2, 62.2200012, 'Toms Spezialitäten', 'Luisenstr. 48', 'Münster', NULL, '44087', 'Germany'); +INSERT INTO orders VALUES (10968, 'ERNSH', 1, '1998-03-23', '1998-04-20', '1998-04-01', 3, 74.5999985, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10969, 'COMMI', 1, '1998-03-23', '1998-04-20', '1998-03-30', 2, 0.209999993, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); +INSERT INTO orders VALUES (10970, 'BOLID', 9, '1998-03-24', '1998-04-07', '1998-04-24', 1, 16.1599998, 'Bólido Comidas preparadas', 'C/ Araquil, 67', 'Madrid', NULL, '28023', 'Spain'); +INSERT INTO orders VALUES (10971, 'FRANR', 2, '1998-03-24', '1998-04-21', '1998-04-02', 2, 121.82, 'France restauration', '54, rue Royale', 'Nantes', NULL, '44000', 'France'); +INSERT INTO orders VALUES (10972, 'LACOR', 4, '1998-03-24', '1998-04-21', '1998-03-26', 2, 0.0199999996, 'La corne d''abondance', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France'); +INSERT INTO orders VALUES (10973, 'LACOR', 6, '1998-03-24', '1998-04-21', '1998-03-27', 2, 15.1700001, 'La corne d''abondance', '67, avenue de l''Europe', 'Versailles', NULL, '78000', 'France'); +INSERT INTO orders VALUES (10974, 'SPLIR', 3, '1998-03-25', '1998-04-08', '1998-04-03', 3, 12.96, 'Split Rail Beer & Ale', 'P.O. Box 555', 'Lander', 'WY', '82520', 'USA'); +INSERT INTO orders VALUES (10975, 'BOTTM', 1, '1998-03-25', '1998-04-22', '1998-03-27', 3, 32.2700005, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10976, 'HILAA', 1, '1998-03-25', '1998-05-06', '1998-04-03', 1, 37.9700012, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (10977, 'FOLKO', 8, '1998-03-26', '1998-04-23', '1998-04-10', 3, 208.5, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10978, 'MAISD', 9, '1998-03-26', '1998-04-23', '1998-04-23', 2, 32.8199997, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); +INSERT INTO orders VALUES (10979, 'ERNSH', 8, '1998-03-26', '1998-04-23', '1998-03-31', 2, 353.070007, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10980, 'FOLKO', 4, '1998-03-27', '1998-05-08', '1998-04-17', 1, 1.25999999, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10981, 'HANAR', 1, '1998-03-27', '1998-04-24', '1998-04-02', 2, 193.369995, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (10982, 'BOTTM', 2, '1998-03-27', '1998-04-24', '1998-04-08', 1, 14.0100002, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (10983, 'SAVEA', 2, '1998-03-27', '1998-04-24', '1998-04-06', 2, 657.539978, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10984, 'SAVEA', 1, '1998-03-30', '1998-04-27', '1998-04-03', 3, 211.220001, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (10985, 'HUNGO', 2, '1998-03-30', '1998-04-27', '1998-04-02', 1, 91.5100021, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (10986, 'OCEAN', 8, '1998-03-30', '1998-04-27', '1998-04-21', 2, 217.860001, 'Océano Atlántico Ltda.', 'Ing. Gustavo Moncada 8585 Piso 20-A', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (10987, 'EASTC', 8, '1998-03-31', '1998-04-28', '1998-04-06', 1, 185.479996, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); +INSERT INTO orders VALUES (10988, 'RATTC', 3, '1998-03-31', '1998-04-28', '1998-04-10', 2, 61.1399994, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (10989, 'QUEDE', 2, '1998-03-31', '1998-04-28', '1998-04-02', 1, 34.7599983, 'Que Delícia', 'Rua da Panificadora, 12', 'Rio de Janeiro', 'RJ', '02389-673', 'Brazil'); +INSERT INTO orders VALUES (10990, 'ERNSH', 2, '1998-04-01', '1998-05-13', '1998-04-07', 3, 117.610001, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (10991, 'QUICK', 1, '1998-04-01', '1998-04-29', '1998-04-07', 1, 38.5099983, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10992, 'THEBI', 1, '1998-04-01', '1998-04-29', '1998-04-03', 3, 4.26999998, 'The Big Cheese', '89 Jefferson Way Suite 2', 'Portland', 'OR', '97201', 'USA'); +INSERT INTO orders VALUES (10993, 'FOLKO', 7, '1998-04-01', '1998-04-29', '1998-04-10', 3, 8.81000042, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (10994, 'VAFFE', 2, '1998-04-02', '1998-04-16', '1998-04-09', 3, 65.5299988, 'Vaffeljernet', 'Smagsloget 45', 'Århus', NULL, '8200', 'Denmark'); +INSERT INTO orders VALUES (10995, 'PERIC', 1, '1998-04-02', '1998-04-30', '1998-04-06', 3, 46, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (10996, 'QUICK', 4, '1998-04-02', '1998-04-30', '1998-04-10', 2, 1.12, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (10997, 'LILAS', 8, '1998-04-03', '1998-05-15', '1998-04-13', 2, 73.9100037, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (10998, 'WOLZA', 8, '1998-04-03', '1998-04-17', '1998-04-17', 2, 20.3099995, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); +INSERT INTO orders VALUES (10999, 'OTTIK', 6, '1998-04-03', '1998-05-01', '1998-04-10', 2, 96.3499985, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (11000, 'RATTC', 2, '1998-04-06', '1998-05-04', '1998-04-14', 3, 55.1199989, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); +INSERT INTO orders VALUES (11001, 'FOLKO', 2, '1998-04-06', '1998-05-04', '1998-04-14', 2, 197.300003, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (11002, 'SAVEA', 4, '1998-04-06', '1998-05-04', '1998-04-16', 1, 141.160004, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (11003, 'THECR', 3, '1998-04-06', '1998-05-04', '1998-04-08', 3, 14.9099998, 'The Cracker Box', '55 Grizzly Peak Rd.', 'Butte', 'MT', '59801', 'USA'); +INSERT INTO orders VALUES (11004, 'MAISD', 3, '1998-04-07', '1998-05-05', '1998-04-20', 1, 44.8400002, 'Maison Dewey', 'Rue Joseph-Bens 532', 'Bruxelles', NULL, 'B-1180', 'Belgium'); +INSERT INTO orders VALUES (11005, 'WILMK', 2, '1998-04-07', '1998-05-05', '1998-04-10', 1, 0.75, 'Wilman Kala', 'Keskuskatu 45', 'Helsinki', NULL, '21240', 'Finland'); +INSERT INTO orders VALUES (11006, 'GREAL', 3, '1998-04-07', '1998-05-05', '1998-04-15', 2, 25.1900005, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (11007, 'PRINI', 8, '1998-04-08', '1998-05-06', '1998-04-13', 2, 202.240005, 'Princesa Isabel Vinhos', 'Estrada da saúde n. 58', 'Lisboa', NULL, '1756', 'Portugal'); +INSERT INTO orders VALUES (11008, 'ERNSH', 7, '1998-04-08', '1998-05-06', NULL, 3, 79.4599991, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (11009, 'GODOS', 2, '1998-04-08', '1998-05-06', '1998-04-10', 1, 59.1100006, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (11010, 'REGGC', 2, '1998-04-09', '1998-05-07', '1998-04-21', 2, 28.7099991, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (11011, 'ALFKI', 3, '1998-04-09', '1998-05-07', '1998-04-13', 1, 1.21000004, 'Alfred''s Futterkiste', 'Obere Str. 57', 'Berlin', NULL, '12209', 'Germany'); +INSERT INTO orders VALUES (11012, 'FRANK', 1, '1998-04-09', '1998-04-23', '1998-04-17', 3, 242.949997, 'Frankenversand', 'Berliner Platz 43', 'München', NULL, '80805', 'Germany'); +INSERT INTO orders VALUES (11013, 'ROMEY', 2, '1998-04-09', '1998-05-07', '1998-04-10', 1, 32.9900017, 'Romero y tomillo', 'Gran Vía, 1', 'Madrid', NULL, '28001', 'Spain'); +INSERT INTO orders VALUES (11014, 'LINOD', 2, '1998-04-10', '1998-05-08', '1998-04-15', 3, 23.6000004, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (11015, 'SANTG', 2, '1998-04-10', '1998-04-24', '1998-04-20', 2, 4.61999989, 'Santé Gourmet', 'Erling Skakkes gate 78', 'Stavern', NULL, '4110', 'Norway'); +INSERT INTO orders VALUES (11016, 'AROUT', 9, '1998-04-10', '1998-05-08', '1998-04-13', 2, 33.7999992, 'Around the Horn', 'Brook Farm Stratford St. Mary', 'Colchester', 'Essex', 'CO7 6JX', 'UK'); +INSERT INTO orders VALUES (11017, 'ERNSH', 9, '1998-04-13', '1998-05-11', '1998-04-20', 2, 754.26001, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (11018, 'LONEP', 4, '1998-04-13', '1998-05-11', '1998-04-16', 2, 11.6499996, 'Lonesome Pine Restaurant', '89 Chiaroscuro Rd.', 'Portland', 'OR', '97219', 'USA'); +INSERT INTO orders VALUES (11019, 'RANCH', 6, '1998-04-13', '1998-05-11', NULL, 3, 3.17000008, 'Rancho grande', 'Av. del Libertador 900', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (11020, 'OTTIK', 2, '1998-04-14', '1998-05-12', '1998-04-16', 2, 43.2999992, 'Ottilies Käseladen', 'Mehrheimerstr. 369', 'Köln', NULL, '50739', 'Germany'); +INSERT INTO orders VALUES (11021, 'QUICK', 3, '1998-04-14', '1998-05-12', '1998-04-21', 1, 297.179993, 'QUICK-Stop', 'Taucherstraße 10', 'Cunewalde', NULL, '01307', 'Germany'); +INSERT INTO orders VALUES (11022, 'HANAR', 9, '1998-04-14', '1998-05-12', '1998-05-04', 2, 6.26999998, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (11023, 'BSBEV', 1, '1998-04-14', '1998-04-28', '1998-04-24', 2, 123.830002, 'B''s Beverages', 'Fauntleroy Circus', 'London', NULL, 'EC2 5NT', 'UK'); +INSERT INTO orders VALUES (11024, 'EASTC', 4, '1998-04-15', '1998-05-13', '1998-04-20', 1, 74.3600006, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); +INSERT INTO orders VALUES (11025, 'WARTH', 6, '1998-04-15', '1998-05-13', '1998-04-24', 3, 29.1700001, 'Wartian Herkku', 'Torikatu 38', 'Oulu', NULL, '90110', 'Finland'); +INSERT INTO orders VALUES (11026, 'FRANS', 4, '1998-04-15', '1998-05-13', '1998-04-28', 1, 47.0900002, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); +INSERT INTO orders VALUES (11027, 'BOTTM', 1, '1998-04-16', '1998-05-14', '1998-04-20', 1, 52.5200005, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (11028, 'KOENE', 2, '1998-04-16', '1998-05-14', '1998-04-22', 1, 29.5900002, 'Königlich Essen', 'Maubelstr. 90', 'Brandenburg', NULL, '14776', 'Germany'); +INSERT INTO orders VALUES (11029, 'CHOPS', 4, '1998-04-16', '1998-05-14', '1998-04-27', 1, 47.8400002, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); +INSERT INTO orders VALUES (11030, 'SAVEA', 7, '1998-04-17', '1998-05-15', '1998-04-27', 2, 830.75, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (11031, 'SAVEA', 6, '1998-04-17', '1998-05-15', '1998-04-24', 2, 227.220001, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (11032, 'WHITC', 2, '1998-04-17', '1998-05-15', '1998-04-23', 3, 606.190002, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (11033, 'RICSU', 7, '1998-04-17', '1998-05-15', '1998-04-23', 3, 84.7399979, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (11034, 'OLDWO', 8, '1998-04-20', '1998-06-01', '1998-04-27', 1, 40.3199997, 'Old World Delicatessen', '2743 Bering St.', 'Anchorage', 'AK', '99508', 'USA'); +INSERT INTO orders VALUES (11035, 'SUPRD', 2, '1998-04-20', '1998-05-18', '1998-04-24', 2, 0.170000002, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (11036, 'DRACD', 8, '1998-04-20', '1998-05-18', '1998-04-22', 3, 149.470001, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); +INSERT INTO orders VALUES (11037, 'GODOS', 7, '1998-04-21', '1998-05-19', '1998-04-27', 1, 3.20000005, 'Godos Cocina Típica', 'C/ Romero, 33', 'Sevilla', NULL, '41101', 'Spain'); +INSERT INTO orders VALUES (11038, 'SUPRD', 1, '1998-04-21', '1998-05-19', '1998-04-30', 2, 29.5900002, 'Suprêmes délices', 'Boulevard Tirou, 255', 'Charleroi', NULL, 'B-6000', 'Belgium'); +INSERT INTO orders VALUES (11039, 'LINOD', 1, '1998-04-21', '1998-05-19', NULL, 2, 65, 'LINO-Delicateses', 'Ave. 5 de Mayo Porlamar', 'I. de Margarita', 'Nueva Esparta', '4980', 'Venezuela'); +INSERT INTO orders VALUES (11040, 'GREAL', 4, '1998-04-22', '1998-05-20', NULL, 3, 18.8400002, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (11041, 'CHOPS', 3, '1998-04-22', '1998-05-20', '1998-04-28', 2, 48.2200012, 'Chop-suey Chinese', 'Hauptstr. 31', 'Bern', NULL, '3012', 'Switzerland'); +INSERT INTO orders VALUES (11042, 'COMMI', 2, '1998-04-22', '1998-05-06', '1998-05-01', 1, 29.9899998, 'Comércio Mineiro', 'Av. dos Lusíadas, 23', 'Sao Paulo', 'SP', '05432-043', 'Brazil'); +INSERT INTO orders VALUES (11043, 'SPECD', 5, '1998-04-22', '1998-05-20', '1998-04-29', 2, 8.80000019, 'Spécialités du monde', '25, rue Lauriston', 'Paris', NULL, '75016', 'France'); +INSERT INTO orders VALUES (11044, 'WOLZA', 4, '1998-04-23', '1998-05-21', '1998-05-01', 1, 8.72000027, 'Wolski Zajazd', 'ul. Filtrowa 68', 'Warszawa', NULL, '01-012', 'Poland'); +INSERT INTO orders VALUES (11045, 'BOTTM', 6, '1998-04-23', '1998-05-21', NULL, 2, 70.5800018, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (11046, 'WANDK', 8, '1998-04-23', '1998-05-21', '1998-04-24', 2, 71.6399994, 'Die Wandernde Kuh', 'Adenauerallee 900', 'Stuttgart', NULL, '70563', 'Germany'); +INSERT INTO orders VALUES (11047, 'EASTC', 7, '1998-04-24', '1998-05-22', '1998-05-01', 3, 46.6199989, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); +INSERT INTO orders VALUES (11048, 'BOTTM', 7, '1998-04-24', '1998-05-22', '1998-04-30', 3, 24.1200008, 'Bottom-Dollar Markets', '23 Tsawassen Blvd.', 'Tsawassen', 'BC', 'T2F 8M4', 'Canada'); +INSERT INTO orders VALUES (11049, 'GOURL', 3, '1998-04-24', '1998-05-22', '1998-05-04', 1, 8.34000015, 'Gourmet Lanchonetes', 'Av. Brasil, 442', 'Campinas', 'SP', '04876-786', 'Brazil'); +INSERT INTO orders VALUES (11050, 'FOLKO', 8, '1998-04-27', '1998-05-25', '1998-05-05', 2, 59.4099998, 'Folk och fä HB', 'Åkergatan 24', 'Bräcke', NULL, 'S-844 67', 'Sweden'); +INSERT INTO orders VALUES (11051, 'LAMAI', 7, '1998-04-27', '1998-05-25', NULL, 3, 2.78999996, 'La maison d''Asie', '1 rue Alsace-Lorraine', 'Toulouse', NULL, '31000', 'France'); +INSERT INTO orders VALUES (11052, 'HANAR', 3, '1998-04-27', '1998-05-25', '1998-05-01', 1, 67.2600021, 'Hanari Carnes', 'Rua do Paço, 67', 'Rio de Janeiro', 'RJ', '05454-876', 'Brazil'); +INSERT INTO orders VALUES (11053, 'PICCO', 2, '1998-04-27', '1998-05-25', '1998-04-29', 2, 53.0499992, 'Piccolo und mehr', 'Geislweg 14', 'Salzburg', NULL, '5020', 'Austria'); +INSERT INTO orders VALUES (11054, 'CACTU', 8, '1998-04-28', '1998-05-26', NULL, 1, 0.330000013, 'Cactus Comidas para llevar', 'Cerrito 333', 'Buenos Aires', NULL, '1010', 'Argentina'); +INSERT INTO orders VALUES (11055, 'HILAA', 7, '1998-04-28', '1998-05-26', '1998-05-05', 2, 120.919998, 'HILARION-Abastos', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'San Cristóbal', 'Táchira', '5022', 'Venezuela'); +INSERT INTO orders VALUES (11056, 'EASTC', 8, '1998-04-28', '1998-05-12', '1998-05-01', 2, 278.959991, 'Eastern Connection', '35 King George', 'London', NULL, 'WX3 6FW', 'UK'); +INSERT INTO orders VALUES (11057, 'NORTS', 3, '1998-04-29', '1998-05-27', '1998-05-01', 3, 4.13000011, 'North/South', 'South House 300 Queensbridge', 'London', NULL, 'SW7 1RZ', 'UK'); +INSERT INTO orders VALUES (11058, 'BLAUS', 9, '1998-04-29', '1998-05-27', NULL, 3, 31.1399994, 'Blauer See Delikatessen', 'Forsterstr. 57', 'Mannheim', NULL, '68306', 'Germany'); +INSERT INTO orders VALUES (11059, 'RICAR', 2, '1998-04-29', '1998-06-10', NULL, 2, 85.8000031, 'Ricardo Adocicados', 'Av. Copacabana, 267', 'Rio de Janeiro', 'RJ', '02389-890', 'Brazil'); +INSERT INTO orders VALUES (11060, 'FRANS', 2, '1998-04-30', '1998-05-28', '1998-05-04', 2, 10.9799995, 'Franchi S.p.A.', 'Via Monte Bianco 34', 'Torino', NULL, '10100', 'Italy'); +INSERT INTO orders VALUES (11061, 'GREAL', 4, '1998-04-30', '1998-06-11', NULL, 3, 14.0100002, 'Great Lakes Food Market', '2732 Baker Blvd.', 'Eugene', 'OR', '97403', 'USA'); +INSERT INTO orders VALUES (11062, 'REGGC', 4, '1998-04-30', '1998-05-28', NULL, 2, 29.9300003, 'Reggiani Caseifici', 'Strada Provinciale 124', 'Reggio Emilia', NULL, '42100', 'Italy'); +INSERT INTO orders VALUES (11063, 'HUNGO', 3, '1998-04-30', '1998-05-28', '1998-05-06', 2, 81.7300034, 'Hungry Owl All-Night Grocers', '8 Johnstown Road', 'Cork', 'Co. Cork', NULL, 'Ireland'); +INSERT INTO orders VALUES (11064, 'SAVEA', 1, '1998-05-01', '1998-05-29', '1998-05-04', 1, 30.0900002, 'Save-a-lot Markets', '187 Suffolk Ln.', 'Boise', 'ID', '83720', 'USA'); +INSERT INTO orders VALUES (11065, 'LILAS', 8, '1998-05-01', '1998-05-29', NULL, 1, 12.9099998, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (11066, 'WHITC', 7, '1998-05-01', '1998-05-29', '1998-05-04', 2, 44.7200012, 'White Clover Markets', '1029 - 12th Ave. S.', 'Seattle', 'WA', '98124', 'USA'); +INSERT INTO orders VALUES (11067, 'DRACD', 1, '1998-05-04', '1998-05-18', '1998-05-06', 2, 7.98000002, 'Drachenblut Delikatessen', 'Walserweg 21', 'Aachen', NULL, '52066', 'Germany'); +INSERT INTO orders VALUES (11068, 'QUEEN', 8, '1998-05-04', '1998-06-01', NULL, 2, 81.75, 'Queen Cozinha', 'Alameda dos Canàrios, 891', 'Sao Paulo', 'SP', '05487-020', 'Brazil'); +INSERT INTO orders VALUES (11069, 'TORTU', 1, '1998-05-04', '1998-06-01', '1998-05-06', 2, 15.6700001, 'Tortuga Restaurante', 'Avda. Azteca 123', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (11070, 'LEHMS', 2, '1998-05-05', '1998-06-02', NULL, 1, 136, 'Lehmanns Marktstand', 'Magazinweg 7', 'Frankfurt a.M.', NULL, '60528', 'Germany'); +INSERT INTO orders VALUES (11071, 'LILAS', 1, '1998-05-05', '1998-06-02', NULL, 1, 0.930000007, 'LILA-Supermercado', 'Carrera 52 con Ave. Bolívar #65-98 Llano Largo', 'Barquisimeto', 'Lara', '3508', 'Venezuela'); +INSERT INTO orders VALUES (11072, 'ERNSH', 4, '1998-05-05', '1998-06-02', NULL, 2, 258.640015, 'Ernst Handel', 'Kirchgasse 6', 'Graz', NULL, '8010', 'Austria'); +INSERT INTO orders VALUES (11073, 'PERIC', 2, '1998-05-05', '1998-06-02', NULL, 2, 24.9500008, 'Pericles Comidas clásicas', 'Calle Dr. Jorge Cash 321', 'México D.F.', NULL, '05033', 'Mexico'); +INSERT INTO orders VALUES (11074, 'SIMOB', 7, '1998-05-06', '1998-06-03', NULL, 2, 18.4400005, 'Simons bistro', 'Vinbæltet 34', 'Kobenhavn', NULL, '1734', 'Denmark'); +INSERT INTO orders VALUES (11075, 'RICSU', 8, '1998-05-06', '1998-06-03', NULL, 2, 6.19000006, 'Richter Supermarkt', 'Starenweg 5', 'Genève', NULL, '1204', 'Switzerland'); +INSERT INTO orders VALUES (11076, 'BONAP', 4, '1998-05-06', '1998-06-03', NULL, 2, 38.2799988, 'Bon app''', '12, rue des Bouchers', 'Marseille', NULL, '13008', 'France'); +INSERT INTO orders VALUES (11077, 'RATTC', 1, '1998-05-06', '1998-06-03', NULL, 2, 8.52999973, 'Rattlesnake Canyon Grocery', '2817 Milton Dr.', 'Albuquerque', 'NM', '87110', 'USA'); + + +-- +-- Data for Name: products; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO products VALUES (1, 'Chai', 8, 1, '10 boxes x 30 bags', 18, 39, 0, 10, 1); +INSERT INTO products VALUES (2, 'Chang', 1, 1, '24 - 12 oz bottles', 19, 17, 40, 25, 1); +INSERT INTO products VALUES (3, 'Aniseed Syrup', 1, 2, '12 - 550 ml bottles', 10, 13, 70, 25, 0); +INSERT INTO products VALUES (4, 'Chef Anton''s Cajun Seasoning', 2, 2, '48 - 6 oz jars', 22, 53, 0, 0, 0); +INSERT INTO products VALUES (5, 'Chef Anton''s Gumbo Mix', 2, 2, '36 boxes', 21.3500004, 0, 0, 0, 1); +INSERT INTO products VALUES (6, 'Grandma''s Boysenberry Spread', 3, 2, '12 - 8 oz jars', 25, 120, 0, 25, 0); +INSERT INTO products VALUES (7, 'Uncle Bob''s Organic Dried Pears', 3, 7, '12 - 1 lb pkgs.', 30, 15, 0, 10, 0); +INSERT INTO products VALUES (8, 'Northwoods Cranberry Sauce', 3, 2, '12 - 12 oz jars', 40, 6, 0, 0, 0); +INSERT INTO products VALUES (9, 'Mishi Kobe Niku', 4, 6, '18 - 500 g pkgs.', 97, 29, 0, 0, 1); +INSERT INTO products VALUES (10, 'Ikura', 4, 8, '12 - 200 ml jars', 31, 31, 0, 0, 0); +INSERT INTO products VALUES (11, 'Queso Cabrales', 5, 4, '1 kg pkg.', 21, 22, 30, 30, 0); +INSERT INTO products VALUES (12, 'Queso Manchego La Pastora', 5, 4, '10 - 500 g pkgs.', 38, 86, 0, 0, 0); +INSERT INTO products VALUES (13, 'Konbu', 6, 8, '2 kg box', 6, 24, 0, 5, 0); +INSERT INTO products VALUES (14, 'Tofu', 6, 7, '40 - 100 g pkgs.', 23.25, 35, 0, 0, 0); +INSERT INTO products VALUES (15, 'Genen Shouyu', 6, 2, '24 - 250 ml bottles', 13, 39, 0, 5, 0); +INSERT INTO products VALUES (16, 'Pavlova', 7, 3, '32 - 500 g boxes', 17.4500008, 29, 0, 10, 0); +INSERT INTO products VALUES (17, 'Alice Mutton', 7, 6, '20 - 1 kg tins', 39, 0, 0, 0, 1); +INSERT INTO products VALUES (18, 'Carnarvon Tigers', 7, 8, '16 kg pkg.', 62.5, 42, 0, 0, 0); +INSERT INTO products VALUES (19, 'Teatime Chocolate Biscuits', 8, 3, '10 boxes x 12 pieces', 9.19999981, 25, 0, 5, 0); +INSERT INTO products VALUES (20, 'Sir Rodney''s Marmalade', 8, 3, '30 gift boxes', 81, 40, 0, 0, 0); +INSERT INTO products VALUES (21, 'Sir Rodney''s Scones', 8, 3, '24 pkgs. x 4 pieces', 10, 3, 40, 5, 0); +INSERT INTO products VALUES (22, 'Gustaf''s Knäckebröd', 9, 5, '24 - 500 g pkgs.', 21, 104, 0, 25, 0); +INSERT INTO products VALUES (23, 'Tunnbröd', 9, 5, '12 - 250 g pkgs.', 9, 61, 0, 25, 0); +INSERT INTO products VALUES (24, 'Guaraná Fantástica', 10, 1, '12 - 355 ml cans', 4.5, 20, 0, 0, 1); +INSERT INTO products VALUES (25, 'NuNuCa Nuß-Nougat-Creme', 11, 3, '20 - 450 g glasses', 14, 76, 0, 30, 0); +INSERT INTO products VALUES (26, 'Gumbär Gummibärchen', 11, 3, '100 - 250 g bags', 31.2299995, 15, 0, 0, 0); +INSERT INTO products VALUES (27, 'Schoggi Schokolade', 11, 3, '100 - 100 g pieces', 43.9000015, 49, 0, 30, 0); +INSERT INTO products VALUES (28, 'Rössle Sauerkraut', 12, 7, '25 - 825 g cans', 45.5999985, 26, 0, 0, 1); +INSERT INTO products VALUES (29, 'Thüringer Rostbratwurst', 12, 6, '50 bags x 30 sausgs.', 123.790001, 0, 0, 0, 1); +INSERT INTO products VALUES (30, 'Nord-Ost Matjeshering', 13, 8, '10 - 200 g glasses', 25.8899994, 10, 0, 15, 0); +INSERT INTO products VALUES (31, 'Gorgonzola Telino', 14, 4, '12 - 100 g pkgs', 12.5, 0, 70, 20, 0); +INSERT INTO products VALUES (32, 'Mascarpone Fabioli', 14, 4, '24 - 200 g pkgs.', 32, 9, 40, 25, 0); +INSERT INTO products VALUES (33, 'Geitost', 15, 4, '500 g', 2.5, 112, 0, 20, 0); +INSERT INTO products VALUES (34, 'Sasquatch Ale', 16, 1, '24 - 12 oz bottles', 14, 111, 0, 15, 0); +INSERT INTO products VALUES (35, 'Steeleye Stout', 16, 1, '24 - 12 oz bottles', 18, 20, 0, 15, 0); +INSERT INTO products VALUES (36, 'Inlagd Sill', 17, 8, '24 - 250 g jars', 19, 112, 0, 20, 0); +INSERT INTO products VALUES (37, 'Gravad lax', 17, 8, '12 - 500 g pkgs.', 26, 11, 50, 25, 0); +INSERT INTO products VALUES (38, 'Côte de Blaye', 18, 1, '12 - 75 cl bottles', 263.5, 17, 0, 15, 0); +INSERT INTO products VALUES (39, 'Chartreuse verte', 18, 1, '750 cc per bottle', 18, 69, 0, 5, 0); +INSERT INTO products VALUES (40, 'Boston Crab Meat', 19, 8, '24 - 4 oz tins', 18.3999996, 123, 0, 30, 0); +INSERT INTO products VALUES (41, 'Jack''s New England Clam Chowder', 19, 8, '12 - 12 oz cans', 9.64999962, 85, 0, 10, 0); +INSERT INTO products VALUES (42, 'Singaporean Hokkien Fried Mee', 20, 5, '32 - 1 kg pkgs.', 14, 26, 0, 0, 1); +INSERT INTO products VALUES (43, 'Ipoh Coffee', 20, 1, '16 - 500 g tins', 46, 17, 10, 25, 0); +INSERT INTO products VALUES (44, 'Gula Malacca', 20, 2, '20 - 2 kg bags', 19.4500008, 27, 0, 15, 0); +INSERT INTO products VALUES (45, 'Rogede sild', 21, 8, '1k pkg.', 9.5, 5, 70, 15, 0); +INSERT INTO products VALUES (46, 'Spegesild', 21, 8, '4 - 450 g glasses', 12, 95, 0, 0, 0); +INSERT INTO products VALUES (47, 'Zaanse koeken', 22, 3, '10 - 4 oz boxes', 9.5, 36, 0, 0, 0); +INSERT INTO products VALUES (48, 'Chocolade', 22, 3, '10 pkgs.', 12.75, 15, 70, 25, 0); +INSERT INTO products VALUES (49, 'Maxilaku', 23, 3, '24 - 50 g pkgs.', 20, 10, 60, 15, 0); +INSERT INTO products VALUES (50, 'Valkoinen suklaa', 23, 3, '12 - 100 g bars', 16.25, 65, 0, 30, 0); +INSERT INTO products VALUES (51, 'Manjimup Dried Apples', 24, 7, '50 - 300 g pkgs.', 53, 20, 0, 10, 0); +INSERT INTO products VALUES (52, 'Filo Mix', 24, 5, '16 - 2 kg boxes', 7, 38, 0, 25, 0); +INSERT INTO products VALUES (53, 'Perth Pasties', 24, 6, '48 pieces', 32.7999992, 0, 0, 0, 1); +INSERT INTO products VALUES (54, 'Tourtière', 25, 6, '16 pies', 7.44999981, 21, 0, 10, 0); +INSERT INTO products VALUES (55, 'Pâté chinois', 25, 6, '24 boxes x 2 pies', 24, 115, 0, 20, 0); +INSERT INTO products VALUES (56, 'Gnocchi di nonna Alice', 26, 5, '24 - 250 g pkgs.', 38, 21, 10, 30, 0); +INSERT INTO products VALUES (57, 'Ravioli Angelo', 26, 5, '24 - 250 g pkgs.', 19.5, 36, 0, 20, 0); +INSERT INTO products VALUES (58, 'Escargots de Bourgogne', 27, 8, '24 pieces', 13.25, 62, 0, 20, 0); +INSERT INTO products VALUES (59, 'Raclette Courdavault', 28, 4, '5 kg pkg.', 55, 79, 0, 0, 0); +INSERT INTO products VALUES (60, 'Camembert Pierrot', 28, 4, '15 - 300 g rounds', 34, 19, 0, 0, 0); +INSERT INTO products VALUES (61, 'Sirop d''érable', 29, 2, '24 - 500 ml bottles', 28.5, 113, 0, 25, 0); +INSERT INTO products VALUES (62, 'Tarte au sucre', 29, 3, '48 pies', 49.2999992, 17, 0, 0, 0); +INSERT INTO products VALUES (63, 'Vegie-spread', 7, 2, '15 - 625 g jars', 43.9000015, 24, 0, 5, 0); +INSERT INTO products VALUES (64, 'Wimmers gute Semmelknödel', 12, 5, '20 bags x 4 pieces', 33.25, 22, 80, 30, 0); +INSERT INTO products VALUES (65, 'Louisiana Fiery Hot Pepper Sauce', 2, 2, '32 - 8 oz bottles', 21.0499992, 76, 0, 0, 0); +INSERT INTO products VALUES (66, 'Louisiana Hot Spiced Okra', 2, 2, '24 - 8 oz jars', 17, 4, 100, 20, 0); +INSERT INTO products VALUES (67, 'Laughing Lumberjack Lager', 16, 1, '24 - 12 oz bottles', 14, 52, 0, 10, 0); +INSERT INTO products VALUES (68, 'Scottish Longbreads', 8, 3, '10 boxes x 8 pieces', 12.5, 6, 10, 15, 0); +INSERT INTO products VALUES (69, 'Gudbrandsdalsost', 15, 4, '10 kg pkg.', 36, 26, 0, 15, 0); +INSERT INTO products VALUES (70, 'Outback Lager', 7, 1, '24 - 355 ml bottles', 15, 15, 10, 30, 0); +INSERT INTO products VALUES (71, 'Flotemysost', 15, 4, '10 - 500 g pkgs.', 21.5, 26, 0, 0, 0); +INSERT INTO products VALUES (72, 'Mozzarella di Giovanni', 14, 4, '24 - 200 g pkgs.', 34.7999992, 14, 0, 0, 0); +INSERT INTO products VALUES (73, 'Röd Kaviar', 17, 8, '24 - 150 g jars', 15, 101, 0, 5, 0); +INSERT INTO products VALUES (74, 'Longlife Tofu', 4, 7, '5 kg pkg.', 10, 4, 20, 5, 0); +INSERT INTO products VALUES (75, 'Rhönbräu Klosterbier', 12, 1, '24 - 0.5 l bottles', 7.75, 125, 0, 25, 0); +INSERT INTO products VALUES (76, 'Lakkalikööri', 23, 1, '500 ml', 18, 57, 0, 20, 0); +INSERT INTO products VALUES (77, 'Original Frankfurter grüne Soße', 12, 2, '12 boxes', 13, 32, 0, 15, 0); + + +-- +-- Data for Name: region; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO region VALUES (1, 'Eastern'); +INSERT INTO region VALUES (2, 'Western'); +INSERT INTO region VALUES (3, 'Northern'); +INSERT INTO region VALUES (4, 'Southern'); + + +-- +-- Data for Name: shippers; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO shippers VALUES (1, 'Speedy Express', '(503) 555-9831'); +INSERT INTO shippers VALUES (2, 'United Package', '(503) 555-3199'); +INSERT INTO shippers VALUES (3, 'Federal Shipping', '(503) 555-9931'); +INSERT INTO shippers VALUES (4, 'Alliance Shippers', '1-800-222-0451'); +INSERT INTO shippers VALUES (5, 'UPS', '1-800-782-7892'); +INSERT INTO shippers VALUES (6, 'DHL', '1-800-225-5345'); + + + +-- +-- Data for Name: suppliers; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO suppliers VALUES (1, 'Exotic Liquids', 'Charlotte Cooper', 'Purchasing Manager', '49 Gilbert St.', 'London', NULL, 'EC1 4SD', 'UK', '(171) 555-2222', NULL, NULL); +INSERT INTO suppliers VALUES (2, 'New Orleans Cajun Delights', 'Shelley Burke', 'Order Administrator', 'P.O. Box 78934', 'New Orleans', 'LA', '70117', 'USA', '(100) 555-4822', NULL, '#CAJUN.HTM#'); +INSERT INTO suppliers VALUES (3, 'Grandma Kelly''s Homestead', 'Regina Murphy', 'Sales Representative', '707 Oxford Rd.', 'Ann Arbor', 'MI', '48104', 'USA', '(313) 555-5735', '(313) 555-3349', NULL); +INSERT INTO suppliers VALUES (4, 'Tokyo Traders', 'Yoshi Nagase', 'Marketing Manager', '9-8 Sekimai Musashino-shi', 'Tokyo', NULL, '100', 'Japan', '(03) 3555-5011', NULL, NULL); +INSERT INTO suppliers VALUES (5, 'Cooperativa de Quesos ''Las Cabras''', 'Antonio del Valle Saavedra', 'Export Administrator', 'Calle del Rosal 4', 'Oviedo', 'Asturias', '33007', 'Spain', '(98) 598 76 54', NULL, NULL); +INSERT INTO suppliers VALUES (6, 'Mayumi''s', 'Mayumi Ohno', 'Marketing Representative', '92 Setsuko Chuo-ku', 'Osaka', NULL, '545', 'Japan', '(06) 431-7877', NULL, 'Mayumi''s (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/mayumi.htm#'); +INSERT INTO suppliers VALUES (7, 'Pavlova, Ltd.', 'Ian Devling', 'Marketing Manager', '74 Rose St. Moonie Ponds', 'Melbourne', 'Victoria', '3058', 'Australia', '(03) 444-2343', '(03) 444-6588', NULL); +INSERT INTO suppliers VALUES (8, 'Specialty Biscuits, Ltd.', 'Peter Wilson', 'Sales Representative', '29 King''s Way', 'Manchester', NULL, 'M14 GSD', 'UK', '(161) 555-4448', NULL, NULL); +INSERT INTO suppliers VALUES (9, 'PB Knäckebröd AB', 'Lars Peterson', 'Sales Agent', 'Kaloadagatan 13', 'Göteborg', NULL, 'S-345 67', 'Sweden', '031-987 65 43', '031-987 65 91', NULL); +INSERT INTO suppliers VALUES (10, 'Refrescos Americanas LTDA', 'Carlos Diaz', 'Marketing Manager', 'Av. das Americanas 12.890', 'Sao Paulo', NULL, '5442', 'Brazil', '(11) 555 4640', NULL, NULL); +INSERT INTO suppliers VALUES (11, 'Heli Süßwaren GmbH & Co. KG', 'Petra Winkler', 'Sales Manager', 'Tiergartenstraße 5', 'Berlin', NULL, '10785', 'Germany', '(010) 9984510', NULL, NULL); +INSERT INTO suppliers VALUES (12, 'Plutzer Lebensmittelgroßmärkte AG', 'Martin Bein', 'International Marketing Mgr.', 'Bogenallee 51', 'Frankfurt', NULL, '60439', 'Germany', '(069) 992755', NULL, 'Plutzer (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/plutzer.htm#'); +INSERT INTO suppliers VALUES (13, 'Nord-Ost-Fisch Handelsgesellschaft mbH', 'Sven Petersen', 'Coordinator Foreign Markets', 'Frahmredder 112a', 'Cuxhaven', NULL, '27478', 'Germany', '(04721) 8713', '(04721) 8714', NULL); +INSERT INTO suppliers VALUES (14, 'Formaggi Fortini s.r.l.', 'Elio Rossi', 'Sales Representative', 'Viale Dante, 75', 'Ravenna', NULL, '48100', 'Italy', '(0544) 60323', '(0544) 60603', '#FORMAGGI.HTM#'); +INSERT INTO suppliers VALUES (15, 'Norske Meierier', 'Beate Vileid', 'Marketing Manager', 'Hatlevegen 5', 'Sandvika', NULL, '1320', 'Norway', '(0)2-953010', NULL, NULL); +INSERT INTO suppliers VALUES (16, 'Bigfoot Breweries', 'Cheryl Saylor', 'Regional Account Rep.', '3400 - 8th Avenue Suite 210', 'Bend', 'OR', '97101', 'USA', '(503) 555-9931', NULL, NULL); +INSERT INTO suppliers VALUES (17, 'Svensk Sjöföda AB', 'Michael Björn', 'Sales Representative', 'Brovallavägen 231', 'Stockholm', NULL, 'S-123 45', 'Sweden', '08-123 45 67', NULL, NULL); +INSERT INTO suppliers VALUES (18, 'Aux joyeux ecclésiastiques', 'Guylène Nodier', 'Sales Manager', '203, Rue des Francs-Bourgeois', 'Paris', NULL, '75004', 'France', '(1) 03.83.00.68', '(1) 03.83.00.62', NULL); +INSERT INTO suppliers VALUES (19, 'New England Seafood Cannery', 'Robb Merchant', 'Wholesale Account Agent', 'Order Processing Dept. 2100 Paul Revere Blvd.', 'Boston', 'MA', '02134', 'USA', '(617) 555-3267', '(617) 555-3389', NULL); +INSERT INTO suppliers VALUES (20, 'Leka Trading', 'Chandra Leka', 'Owner', '471 Serangoon Loop, Suite #402', 'Singapore', NULL, '0512', 'Singapore', '555-8787', NULL, NULL); +INSERT INTO suppliers VALUES (21, 'Lyngbysild', 'Niels Petersen', 'Sales Manager', 'Lyngbysild Fiskebakken 10', 'Lyngby', NULL, '2800', 'Denmark', '43844108', '43844115', NULL); +INSERT INTO suppliers VALUES (22, 'Zaanse Snoepfabriek', 'Dirk Luchte', 'Accounting Manager', 'Verkoop Rijnweg 22', 'Zaandam', NULL, '9999 ZZ', 'Netherlands', '(12345) 1212', '(12345) 1210', NULL); +INSERT INTO suppliers VALUES (23, 'Karkki Oy', 'Anne Heikkonen', 'Product Manager', 'Valtakatu 12', 'Lappeenranta', NULL, '53120', 'Finland', '(953) 10956', NULL, NULL); +INSERT INTO suppliers VALUES (24, 'G''day, Mate', 'Wendy Mackenzie', 'Sales Representative', '170 Prince Edward Parade Hunter''s Hill', 'Sydney', 'NSW', '2042', 'Australia', '(02) 555-5914', '(02) 555-4873', 'G''day Mate (on the World Wide Web)#http://www.microsoft.com/accessdev/sampleapps/gdaymate.htm#'); +INSERT INTO suppliers VALUES (25, 'Ma Maison', 'Jean-Guy Lauzon', 'Marketing Manager', '2960 Rue St. Laurent', 'Montréal', 'Québec', 'H1J 1C3', 'Canada', '(514) 555-9022', NULL, NULL); +INSERT INTO suppliers VALUES (26, 'Pasta Buttini s.r.l.', 'Giovanni Giudici', 'Order Administrator', 'Via dei Gelsomini, 153', 'Salerno', NULL, '84100', 'Italy', '(089) 6547665', '(089) 6547667', NULL); +INSERT INTO suppliers VALUES (27, 'Escargots Nouveaux', 'Marie Delamare', 'Sales Manager', '22, rue H. Voiron', 'Montceau', NULL, '71300', 'France', '85.57.00.07', NULL, NULL); +INSERT INTO suppliers VALUES (28, 'Gai pâturage', 'Eliane Noz', 'Sales Representative', 'Bat. B 3, rue des Alpes', 'Annecy', NULL, '74000', 'France', '38.76.98.06', '38.76.98.58', NULL); +INSERT INTO suppliers VALUES (29, 'Forêts d''érables', 'Chantal Goulet', 'Accounting Manager', '148 rue Chasseur', 'Ste-Hyacinthe', 'Québec', 'J2S 7S8', 'Canada', '(514) 555-2955', '(514) 555-2921', NULL); + + +-- +-- Data for Name: territories; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO territories VALUES ('01581', 'Westboro', 1); +INSERT INTO territories VALUES ('01730', 'Bedford', 1); +INSERT INTO territories VALUES ('01833', 'Georgetow', 1); +INSERT INTO territories VALUES ('02116', 'Boston', 1); +INSERT INTO territories VALUES ('02139', 'Cambridge', 1); +INSERT INTO territories VALUES ('02184', 'Braintree', 1); +INSERT INTO territories VALUES ('02903', 'Providence', 1); +INSERT INTO territories VALUES ('03049', 'Hollis', 3); +INSERT INTO territories VALUES ('03801', 'Portsmouth', 3); +INSERT INTO territories VALUES ('06897', 'Wilton', 1); +INSERT INTO territories VALUES ('07960', 'Morristown', 1); +INSERT INTO territories VALUES ('08837', 'Edison', 1); +INSERT INTO territories VALUES ('10019', 'New York', 1); +INSERT INTO territories VALUES ('10038', 'New York', 1); +INSERT INTO territories VALUES ('11747', 'Mellvile', 1); +INSERT INTO territories VALUES ('14450', 'Fairport', 1); +INSERT INTO territories VALUES ('19428', 'Philadelphia', 3); +INSERT INTO territories VALUES ('19713', 'Neward', 1); +INSERT INTO territories VALUES ('20852', 'Rockville', 1); +INSERT INTO territories VALUES ('27403', 'Greensboro', 1); +INSERT INTO territories VALUES ('27511', 'Cary', 1); +INSERT INTO territories VALUES ('29202', 'Columbia', 4); +INSERT INTO territories VALUES ('30346', 'Atlanta', 4); +INSERT INTO territories VALUES ('31406', 'Savannah', 4); +INSERT INTO territories VALUES ('32859', 'Orlando', 4); +INSERT INTO territories VALUES ('33607', 'Tampa', 4); +INSERT INTO territories VALUES ('40222', 'Louisville', 1); +INSERT INTO territories VALUES ('44122', 'Beachwood', 3); +INSERT INTO territories VALUES ('45839', 'Findlay', 3); +INSERT INTO territories VALUES ('48075', 'Southfield', 3); +INSERT INTO territories VALUES ('48084', 'Troy', 3); +INSERT INTO territories VALUES ('48304', 'Bloomfield Hills', 3); +INSERT INTO territories VALUES ('53404', 'Racine', 3); +INSERT INTO territories VALUES ('55113', 'Roseville', 3); +INSERT INTO territories VALUES ('55439', 'Minneapolis', 3); +INSERT INTO territories VALUES ('60179', 'Hoffman Estates', 2); +INSERT INTO territories VALUES ('60601', 'Chicago', 2); +INSERT INTO territories VALUES ('72716', 'Bentonville', 4); +INSERT INTO territories VALUES ('75234', 'Dallas', 4); +INSERT INTO territories VALUES ('78759', 'Austin', 4); +INSERT INTO territories VALUES ('80202', 'Denver', 2); +INSERT INTO territories VALUES ('80909', 'Colorado Springs', 2); +INSERT INTO territories VALUES ('85014', 'Phoenix', 2); +INSERT INTO territories VALUES ('85251', 'Scottsdale', 2); +INSERT INTO territories VALUES ('90405', 'Santa Monica', 2); +INSERT INTO territories VALUES ('94025', 'Menlo Park', 2); +INSERT INTO territories VALUES ('94105', 'San Francisco', 2); +INSERT INTO territories VALUES ('95008', 'Campbell', 2); +INSERT INTO territories VALUES ('95054', 'Santa Clara', 2); +INSERT INTO territories VALUES ('95060', 'Santa Cruz', 2); +INSERT INTO territories VALUES ('98004', 'Bellevue', 2); +INSERT INTO territories VALUES ('98052', 'Redmond', 2); +INSERT INTO territories VALUES ('98104', 'Seattle', 2); + + +-- +-- Data for Name: us_states; Type: TABLE DATA; Schema: public; Owner: - +-- + +INSERT INTO us_states VALUES (1, 'Alabama', 'AL', 'south'); +INSERT INTO us_states VALUES (2, 'Alaska', 'AK', 'north'); +INSERT INTO us_states VALUES (3, 'Arizona', 'AZ', 'west'); +INSERT INTO us_states VALUES (4, 'Arkansas', 'AR', 'south'); +INSERT INTO us_states VALUES (5, 'California', 'CA', 'west'); +INSERT INTO us_states VALUES (6, 'Colorado', 'CO', 'west'); +INSERT INTO us_states VALUES (7, 'Connecticut', 'CT', 'east'); +INSERT INTO us_states VALUES (8, 'Delaware', 'DE', 'east'); +INSERT INTO us_states VALUES (9, 'District of Columbia', 'DC', 'east'); +INSERT INTO us_states VALUES (10, 'Florida', 'FL', 'south'); +INSERT INTO us_states VALUES (11, 'Georgia', 'GA', 'south'); +INSERT INTO us_states VALUES (12, 'Hawaii', 'HI', 'west'); +INSERT INTO us_states VALUES (13, 'Idaho', 'ID', 'midwest'); +INSERT INTO us_states VALUES (14, 'Illinois', 'IL', 'midwest'); +INSERT INTO us_states VALUES (15, 'Indiana', 'IN', 'midwest'); +INSERT INTO us_states VALUES (16, 'Iowa', 'IO', 'midwest'); +INSERT INTO us_states VALUES (17, 'Kansas', 'KS', 'midwest'); +INSERT INTO us_states VALUES (18, 'Kentucky', 'KY', 'south'); +INSERT INTO us_states VALUES (19, 'Louisiana', 'LA', 'south'); +INSERT INTO us_states VALUES (20, 'Maine', 'ME', 'north'); +INSERT INTO us_states VALUES (21, 'Maryland', 'MD', 'east'); +INSERT INTO us_states VALUES (22, 'Massachusetts', 'MA', 'north'); +INSERT INTO us_states VALUES (23, 'Michigan', 'MI', 'north'); +INSERT INTO us_states VALUES (24, 'Minnesota', 'MN', 'north'); +INSERT INTO us_states VALUES (25, 'Mississippi', 'MS', 'south'); +INSERT INTO us_states VALUES (26, 'Missouri', 'MO', 'south'); +INSERT INTO us_states VALUES (27, 'Montana', 'MT', 'west'); +INSERT INTO us_states VALUES (28, 'Nebraska', 'NE', 'midwest'); +INSERT INTO us_states VALUES (29, 'Nevada', 'NV', 'west'); +INSERT INTO us_states VALUES (30, 'New Hampshire', 'NH', 'east'); +INSERT INTO us_states VALUES (31, 'New Jersey', 'NJ', 'east'); +INSERT INTO us_states VALUES (32, 'New Mexico', 'NM', 'west'); +INSERT INTO us_states VALUES (33, 'New York', 'NY', 'east'); +INSERT INTO us_states VALUES (34, 'North Carolina', 'NC', 'east'); +INSERT INTO us_states VALUES (35, 'North Dakota', 'ND', 'midwest'); +INSERT INTO us_states VALUES (36, 'Ohio', 'OH', 'midwest'); +INSERT INTO us_states VALUES (37, 'Oklahoma', 'OK', 'midwest'); +INSERT INTO us_states VALUES (38, 'Oregon', 'OR', 'west'); +INSERT INTO us_states VALUES (39, 'Pennsylvania', 'PA', 'east'); +INSERT INTO us_states VALUES (40, 'Rhode Island', 'RI', 'east'); +INSERT INTO us_states VALUES (41, 'South Carolina', 'SC', 'east'); +INSERT INTO us_states VALUES (42, 'South Dakota', 'SD', 'midwest'); +INSERT INTO us_states VALUES (43, 'Tennessee', 'TN', 'midwest'); +INSERT INTO us_states VALUES (44, 'Texas', 'TX', 'west'); +INSERT INTO us_states VALUES (45, 'Utah', 'UT', 'west'); +INSERT INTO us_states VALUES (46, 'Vermont', 'VT', 'east'); +INSERT INTO us_states VALUES (47, 'Virginia', 'VA', 'east'); +INSERT INTO us_states VALUES (48, 'Washington', 'WA', 'west'); +INSERT INTO us_states VALUES (49, 'West Virginia', 'WV', 'south'); +INSERT INTO us_states VALUES (50, 'Wisconsin', 'WI', 'midwest'); +INSERT INTO us_states VALUES (51, 'Wyoming', 'WY', 'west'); + + +-- +-- Name: pk_categories; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY categories + ADD CONSTRAINT pk_categories PRIMARY KEY (category_id); + + +-- +-- Name: pk_customer_customer_demo; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY customer_customer_demo + ADD CONSTRAINT pk_customer_customer_demo PRIMARY KEY (customer_id, customer_type_id); + + +-- +-- Name: pk_customer_demographics; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY customer_demographics + ADD CONSTRAINT pk_customer_demographics PRIMARY KEY (customer_type_id); + + +-- +-- Name: pk_customers; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY customers + ADD CONSTRAINT pk_customers PRIMARY KEY (customer_id); + + +-- +-- Name: pk_employees; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY employees + ADD CONSTRAINT pk_employees PRIMARY KEY (employee_id); + + +-- +-- Name: pk_employee_territories; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY employee_territories + ADD CONSTRAINT pk_employee_territories PRIMARY KEY (employee_id, territory_id); + + +-- +-- Name: pk_order_details; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY order_details + ADD CONSTRAINT pk_order_details PRIMARY KEY (order_id, product_id); + + +-- +-- Name: pk_orders; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY orders + ADD CONSTRAINT pk_orders PRIMARY KEY (order_id); + + +-- +-- Name: pk_products; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY products + ADD CONSTRAINT pk_products PRIMARY KEY (product_id); + + +-- +-- Name: pk_region; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY region + ADD CONSTRAINT pk_region PRIMARY KEY (region_id); + + +-- +-- Name: pk_shippers; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY shippers + ADD CONSTRAINT pk_shippers PRIMARY KEY (shipper_id); + + +-- +-- Name: pk_suppliers; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY suppliers + ADD CONSTRAINT pk_suppliers PRIMARY KEY (supplier_id); + + +-- +-- Name: pk_territories; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY territories + ADD CONSTRAINT pk_territories PRIMARY KEY (territory_id); + + +-- +-- Name: pk_usstates; Type: CONSTRAINT; Schema: public; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY us_states + ADD CONSTRAINT pk_usstates PRIMARY KEY (state_id); + + +-- +-- Name: fk_orders_customers; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY orders + ADD CONSTRAINT fk_orders_customers FOREIGN KEY (customer_id) REFERENCES customers; + + +-- +-- Name: fk_orders_employees; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY orders + ADD CONSTRAINT fk_orders_employees FOREIGN KEY (employee_id) REFERENCES employees; + + +-- +-- Name: fk_orders_shippers; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY orders + ADD CONSTRAINT fk_orders_shippers FOREIGN KEY (ship_via) REFERENCES shippers; + + +-- +-- Name: fk_order_details_products; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY order_details + ADD CONSTRAINT fk_order_details_products FOREIGN KEY (product_id) REFERENCES products; + + +-- +-- Name: fk_order_details_orders; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY order_details + ADD CONSTRAINT fk_order_details_orders FOREIGN KEY (order_id) REFERENCES orders; + + +-- +-- Name: fk_products_categories; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY products + ADD CONSTRAINT fk_products_categories FOREIGN KEY (category_id) REFERENCES categories; + + +-- +-- Name: fk_products_suppliers; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY products + ADD CONSTRAINT fk_products_suppliers FOREIGN KEY (supplier_id) REFERENCES suppliers; + + +-- +-- Name: fk_territories_region; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY territories + ADD CONSTRAINT fk_territories_region FOREIGN KEY (region_id) REFERENCES region; + + +-- +-- Name: fk_employee_territories_territories; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY employee_territories + ADD CONSTRAINT fk_employee_territories_territories FOREIGN KEY (territory_id) REFERENCES territories; + + +-- +-- Name: fk_employee_territories_employees; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY employee_territories + ADD CONSTRAINT fk_employee_territories_employees FOREIGN KEY (employee_id) REFERENCES employees; + + +-- +-- Name: fk_customer_customer_demo_customer_demographics; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY customer_customer_demo + ADD CONSTRAINT fk_customer_customer_demo_customer_demographics FOREIGN KEY (customer_type_id) REFERENCES customer_demographics; + + +-- +-- Name: fk_customer_customer_demo_customers; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY customer_customer_demo + ADD CONSTRAINT fk_customer_customer_demo_customers FOREIGN KEY (customer_id) REFERENCES customers; + + +-- +-- Name: fk_employees_employees; Type: Constraint; Schema: -; Owner: - +-- + +ALTER TABLE ONLY employees + ADD CONSTRAINT fk_employees_employees FOREIGN KEY (reports_to) REFERENCES employees; + + +-- +-- PostgreSQL database dump complete +-- diff --git a/tests/init/init.go b/tests/init/init.go index f0436d1..c2ed501 100644 --- a/tests/init/init.go +++ b/tests/init/init.go @@ -24,6 +24,7 @@ func main() { "dvds", "test_sample", "chinook", + "northwind", } for _, schemaName := range schemaNames { @@ -33,6 +34,8 @@ func main() { _, err = db.Exec(string(testSampleSql)) + panicOnError(err) + err = postgres.Generate("./.gentestdata", postgres.DBConnection{ Host: dbconfig.Host, Port: "5432", diff --git a/tests/northwind_test.go b/tests/northwind_test.go new file mode 100644 index 0000000..30ee7a1 --- /dev/null +++ b/tests/northwind_test.go @@ -0,0 +1,68 @@ +package tests + +import ( + "fmt" + "github.com/go-jet/jet/tests/.gentestdata/jetdb/northwind/model" + . "github.com/go-jet/jet/tests/.gentestdata/jetdb/northwind/table" + "gotest.tools/assert" + "testing" +) + +func TestNorthwindJoinEverything(t *testing.T) { + + stmt := Customers. + LEFT_JOIN(CustomerCustomerDemo, Customers.CustomerID.EQ(CustomerCustomerDemo.CustomerID)). + LEFT_JOIN(CustomerDemographics, CustomerCustomerDemo.CustomerTypeID.EQ(CustomerDemographics.CustomerTypeID)). + LEFT_JOIN(Orders, Orders.CustomerID.EQ(Customers.CustomerID)). + LEFT_JOIN(Shippers, Orders.ShipVia.EQ(Shippers.ShipperID)). + LEFT_JOIN(OrderDetails, Orders.OrderID.EQ(OrderDetails.OrderID)). + LEFT_JOIN(Products, OrderDetails.ProductID.EQ(Products.ProductID)). + LEFT_JOIN(Categories, Products.CategoryID.EQ(Categories.CategoryID)). + LEFT_JOIN(Suppliers, Products.SupplierID.EQ(Suppliers.SupplierID)). + LEFT_JOIN(Employees, Orders.EmployeeID.EQ(Employees.EmployeeID)). + LEFT_JOIN(EmployeeTerritories, EmployeeTerritories.EmployeeID.EQ(Employees.EmployeeID)). + LEFT_JOIN(Territories, EmployeeTerritories.TerritoryID.EQ(Territories.TerritoryID)). + LEFT_JOIN(Region, Territories.RegionID.EQ(Region.RegionID)). + SELECT( + Customers.AllColumns, + CustomerDemographics.AllColumns, + Orders.AllColumns, + Shippers.AllColumns, + OrderDetails.AllColumns, + Products.AllColumns, + Categories.AllColumns, + Suppliers.AllColumns, + ). + ORDER_BY(Customers.CustomerID, Orders.OrderID, Products.ProductID) + + var dest []struct { + model.Customers + + Demographics model.CustomerDemographics + + Orders []struct { + model.Orders + + Shipper model.Shippers + + Details struct { + model.OrderDetails + + Products []struct { + model.Products + + Category model.Categories + Supplier model.Suppliers + } + } + } + } + + err := stmt.Query(db, &dest) + assert.NilError(t, err) + + fmt.Println(len(dest)) + + //jsonSave("./testdata/northwind-all.json", dest) + assertJsonFile(t, "./testdata/northwind-all.json", dest) +} diff --git a/tests/testdata/northwind-all.json b/tests/testdata/northwind-all.json new file mode 100644 index 0000000..94927ad --- /dev/null +++ b/tests/testdata/northwind-all.json @@ -0,0 +1,135339 @@ +[ + { + "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 From f016bb563c76526b1931ac48ab4c6b545d37d40c Mon Sep 17 00:00:00 2001 From: go-jet Date: Wed, 17 Jul 2019 11:10:00 +0200 Subject: [PATCH 2/2] Add northwind db. Test fix. --- tests/init/data/northwind.sql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/init/data/northwind.sql b/tests/init/data/northwind.sql index 7b2711e..8416b4e 100644 --- a/tests/init/data/northwind.sql +++ b/tests/init/data/northwind.sql @@ -1,7 +1,6 @@ -- -- PostgreSQL database dump -- -SET search_path = northwind; SET statement_timeout = 0; SET lock_timeout = 0; @@ -16,6 +15,11 @@ SET default_tablespace = ''; SET default_with_oids = false; +DROP SCHEMA IF EXISTS northwind CASCADE; + +CREATE SCHEMA northwind; + +SET search_path = northwind; --- --- drop tables