From 25c27ed31148a7062f78a0b78a3015fa48bdf976 Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Tue, 14 Oct 2025 10:45:09 +0300 Subject: [PATCH 1/3] feat(grids): add both side column pinning custom samples --- .../column-pinning-both-sides/.eslintrc.js | 76 + .../grid/column-pinning-both-sides/ReadMe.md | 56 + .../column-pinning-both-sides/package.json | 49 + .../public/index.html | 11 + .../sandbox.config.json | 5 + .../src/CustomersData.ts | 401 + .../column-pinning-both-sides/src/index.css | 7 + .../column-pinning-both-sides/src/index.tsx | 122 + .../src/react-app-env.d.ts | 1 + .../column-pinning-both-sides/tsconfig.json | 39 + .../column-pinning-both-sides/.eslintrc.js | 76 + .../column-pinning-both-sides/ReadMe.md | 56 + .../column-pinning-both-sides/package.json | 49 + .../public/index.html | 11 + .../sandbox.config.json | 5 + .../src/HierarchicalCustomersData.json | 37940 ++++++++++++++++ .../column-pinning-both-sides/src/index.css | 7 + .../column-pinning-both-sides/src/index.tsx | 201 + .../src/react-app-env.d.ts | 1 + .../column-pinning-both-sides/tsconfig.json | 39 + .../column-pinning-both-sides/.eslintrc.js | 76 + .../column-pinning-both-sides/ReadMe.md | 56 + .../column-pinning-both-sides/package.json | 49 + .../public/index.html | 11 + .../sandbox.config.json | 5 + .../src/EmployeesFlatDetails.ts | 50 + .../column-pinning-both-sides/src/index.css | 7 + .../column-pinning-both-sides/src/index.tsx | 137 + .../src/react-app-env.d.ts | 1 + .../column-pinning-both-sides/tsconfig.json | 39 + 30 files changed, 39583 insertions(+) create mode 100644 samples/grids/grid/column-pinning-both-sides/.eslintrc.js create mode 100644 samples/grids/grid/column-pinning-both-sides/ReadMe.md create mode 100644 samples/grids/grid/column-pinning-both-sides/package.json create mode 100644 samples/grids/grid/column-pinning-both-sides/public/index.html create mode 100644 samples/grids/grid/column-pinning-both-sides/sandbox.config.json create mode 100644 samples/grids/grid/column-pinning-both-sides/src/CustomersData.ts create mode 100644 samples/grids/grid/column-pinning-both-sides/src/index.css create mode 100644 samples/grids/grid/column-pinning-both-sides/src/index.tsx create mode 100644 samples/grids/grid/column-pinning-both-sides/src/react-app-env.d.ts create mode 100644 samples/grids/grid/column-pinning-both-sides/tsconfig.json create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/.eslintrc.js create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/ReadMe.md create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/package.json create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/public/index.html create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/sandbox.config.json create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/src/HierarchicalCustomersData.json create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.css create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/src/react-app-env.d.ts create mode 100644 samples/grids/hierarchical-grid/column-pinning-both-sides/tsconfig.json create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/.eslintrc.js create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/ReadMe.md create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/package.json create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/public/index.html create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/sandbox.config.json create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/src/EmployeesFlatDetails.ts create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/src/index.css create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/src/react-app-env.d.ts create mode 100644 samples/grids/tree-grid/column-pinning-both-sides/tsconfig.json diff --git a/samples/grids/grid/column-pinning-both-sides/.eslintrc.js b/samples/grids/grid/column-pinning-both-sides/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/grid/column-pinning-both-sides/ReadMe.md b/samples/grids/grid/column-pinning-both-sides/ReadMe.md new file mode 100644 index 0000000000..7f3f99e103 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Row Drag Base feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/row-drag-base +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/grid/column-pinning-both-sides/package.json b/samples/grids/grid/column-pinning-both-sides/package.json new file mode 100644 index 0000000000..371824e9d6 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.2", + "igniteui-react-core": "19.2.2", + "igniteui-react-datasources": "19.2.2", + "igniteui-react-grids": "19.3.0-rc.2", + "igniteui-react-inputs": "19.2.2", + "igniteui-react-layouts": "19.2.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/grid/column-pinning-both-sides/public/index.html b/samples/grids/grid/column-pinning-both-sides/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + \ No newline at end of file diff --git a/samples/grids/grid/column-pinning-both-sides/sandbox.config.json b/samples/grids/grid/column-pinning-both-sides/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/grid/column-pinning-both-sides/src/CustomersData.ts b/samples/grids/grid/column-pinning-both-sides/src/CustomersData.ts new file mode 100644 index 0000000000..bd7df81565 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/src/CustomersData.ts @@ -0,0 +1,401 @@ +export class CustomersDataItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public ID: string; + public CompanyName: string; + public ContactName: string; + public ContactTitle: string; + public Address: string; + public City: string; + public Region: string; + public PostalCode: string; + public Country: string; + public Phone: string; + public Fax: string; + +} +export class CustomersData extends Array { + public constructor() { + super(); + this.push(new CustomersDataItem( + { + ID: `ALFKI`, + CompanyName: `Alfreds Futterkiste`, + ContactName: `Maria Anders`, + ContactTitle: `Sales Representative`, + Address: `Obere Str. 57`, + City: `Berlin`, + Region: `East`, + PostalCode: `12209`, + Country: `Germany`, + Phone: `030-0074321`, + Fax: `030-0076545` + })); + this.push(new CustomersDataItem( + { + ID: `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: `South`, + PostalCode: `05021`, + Country: `Mexico`, + Phone: `(5) 555-4729`, + Fax: `(5) 555-3745` + })); + this.push(new CustomersDataItem( + { + ID: `ANTON`, + CompanyName: `Antonio Moreno Taquería`, + ContactName: `Antonio Moreno`, + ContactTitle: `Owner`, + Address: `Mataderos 2312`, + City: `México D.F.`, + Region: `South`, + PostalCode: `05023`, + Country: `Mexico`, + Phone: `(5) 555-3932`, + Fax: `(5) 555-3745` + })); + this.push(new CustomersDataItem( + { + ID: `AROUT`, + CompanyName: `Around the Horn`, + ContactName: `Thomas Hardy`, + ContactTitle: `Sales Representative`, + Address: `120 Hanover Sq.`, + City: `London`, + Region: `East`, + PostalCode: `WA1 1DP`, + Country: `UK`, + Phone: `(171) 555-7788`, + Fax: `(171) 555-6750` + })); + this.push(new CustomersDataItem( + { + ID: `BERGS`, + CompanyName: `Berglunds snabbköp`, + ContactName: `Christina Berglund`, + ContactTitle: `Order Administrator`, + Address: `Berguvsvägen 8`, + City: `Luleå`, + Region: `South`, + PostalCode: `S-958 22`, + Country: `Sweden`, + Phone: `0921-12 34 65`, + Fax: `0921-12 34 67` + })); + this.push(new CustomersDataItem( + { + ID: `BLAUS`, + CompanyName: `Blauer See Delikatessen`, + ContactName: `Hanna Moos`, + ContactTitle: `Sales Representative`, + Address: `Forsterstr. 57`, + City: `Mannheim`, + Region: `East`, + PostalCode: `68306`, + Country: `Germany`, + Phone: `0621-08460`, + Fax: `0621-08924` + })); + this.push(new CustomersDataItem( + { + ID: `BLONP`, + CompanyName: `Blondesddsl père et fils`, + ContactName: `Frédérique Citeaux`, + ContactTitle: `Marketing Manager`, + Address: `24, place Kléber`, + City: `Strasbourg`, + Region: `East`, + PostalCode: `67000`, + Country: `France`, + Phone: `88.60.15.31`, + Fax: `88.60.15.32` + })); + this.push(new CustomersDataItem( + { + ID: `BOLID`, + CompanyName: `Bólido Comidas preparadas`, + ContactName: `Martín Sommer`, + ContactTitle: `Owner`, + Address: `C/ Araquil, 67`, + City: `Madrid`, + Region: `East`, + PostalCode: `28023`, + Country: `Spain`, + Phone: `(91) 555 22 82`, + Fax: `(91) 555 91 99` + })); + this.push(new CustomersDataItem( + { + ID: `BONAP`, + CompanyName: `Bon app'`, + ContactName: `Laurence Lebihan`, + ContactTitle: `Owner`, + Address: `12, rue des Bouchers`, + City: `Marseille`, + Region: `West`, + PostalCode: `13008`, + Country: `France`, + Phone: `91.24.45.40`, + Fax: `91.24.45.41` + })); + this.push(new CustomersDataItem( + { + ID: `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` + })); + this.push(new CustomersDataItem( + { + ID: `BSBEV`, + CompanyName: `B's Beverages`, + ContactName: `Victoria Ashworth`, + ContactTitle: `Sales Representative`, + Address: `Fauntleroy Circus`, + City: `London`, + Region: `South`, + PostalCode: `EC2 5NT`, + Country: `UK`, + Phone: `(171) 555-1212`, + Fax: `(5) 555-3745` + })); + this.push(new CustomersDataItem( + { + ID: `CACTU`, + CompanyName: `Cactus Comidas para llevar`, + ContactName: `Patricio Simpson`, + ContactTitle: `Sales Agent`, + Address: `Cerrito 333`, + City: `Buenos Aires`, + Region: `East`, + PostalCode: `1010`, + Country: `Argentina`, + Phone: `(1) 135-5555`, + Fax: `(1) 135-4892` + })); + this.push(new CustomersDataItem( + { + ID: `CENTC`, + CompanyName: `Centro comercial Moctezuma`, + ContactName: `Francisco Chang`, + ContactTitle: `Marketing Manager`, + Address: `Sierras de Granada 9993`, + City: `México D.F.`, + Region: `South`, + PostalCode: `05022`, + Country: `Mexico`, + Phone: `(5) 555-3392`, + Fax: `(5) 555-7293` + })); + this.push(new CustomersDataItem( + { + ID: `CHOPS`, + CompanyName: `Chop-suey Chinese`, + ContactName: `Yang Wang`, + ContactTitle: `Owner`, + Address: `Hauptstr. 29`, + City: `Bern`, + Region: `East`, + PostalCode: `3012`, + Country: `Switzerland`, + Phone: `0452-076545`, + Fax: `(5) 555-3745` + })); + this.push(new CustomersDataItem( + { + ID: `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: `(5) 555-3745` + })); + this.push(new CustomersDataItem( + { + ID: `CONSH`, + CompanyName: `Consolidated Holdings`, + ContactName: `Elizabeth Brown`, + ContactTitle: `Sales Representative`, + Address: `Berkeley Gardens 12 Brewery`, + City: `London`, + Region: `South`, + PostalCode: `WX1 6LT`, + Country: `UK`, + Phone: `(171) 555-2282`, + Fax: `(171) 555-9199` + })); + this.push(new CustomersDataItem( + { + ID: `DRACD`, + CompanyName: `Drachenblut Delikatessen`, + ContactName: `Sven Ottlieb`, + ContactTitle: `Order Administrator`, + Address: `Walserweg 21`, + City: `Aachen`, + Region: `South`, + PostalCode: `52066`, + Country: `Germany`, + Phone: `0241-039123`, + Fax: `0241-059428` + })); + this.push(new CustomersDataItem( + { + ID: `DUMON`, + CompanyName: `Du monde entier`, + ContactName: `Janine Labrune`, + ContactTitle: `Owner`, + Address: `67, rue des Cinquante Otages`, + City: `Nantes`, + Region: `East`, + PostalCode: `44000`, + Country: `France`, + Phone: `40.67.88.88`, + Fax: `40.67.89.89` + })); + this.push(new CustomersDataItem( + { + ID: `EASTC`, + CompanyName: `Eastern Connection`, + ContactName: `Ann Devon`, + ContactTitle: `Sales Agent`, + Address: `35 King George`, + City: `London`, + Region: `East`, + PostalCode: `WX3 6FW`, + Country: `UK`, + Phone: `(171) 555-0297`, + Fax: `(171) 555-3373` + })); + this.push(new CustomersDataItem( + { + ID: `ERNSH`, + CompanyName: `Ernst Handel`, + ContactName: `Roland Mendel`, + ContactTitle: `Sales Manager`, + Address: `Kirchgasse 6`, + City: `Graz`, + Region: `South`, + PostalCode: `8010`, + Country: `Austria`, + Phone: `7675-3425`, + Fax: `7675-3426` + })); + this.push(new CustomersDataItem( + { + ID: `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: `(5) 555-3745` + })); + this.push(new CustomersDataItem( + { + ID: `FISSA`, + CompanyName: `FISSA Fabrica Inter. Salchichas S.A.`, + ContactName: `Diego Roel`, + ContactTitle: `Accounting Manager`, + Address: `C/ Moralzarzal, 86`, + City: `Madrid`, + Region: `East`, + PostalCode: `28034`, + Country: `Spain`, + Phone: `(91) 555 94 44`, + Fax: `(91) 555 55 93` + })); + this.push(new CustomersDataItem( + { + ID: `FOLIG`, + CompanyName: `Folies gourmandes`, + ContactName: `Martine Rancé`, + ContactTitle: `Assistant Sales Agent`, + Address: `184, chaussée de Tournai`, + City: `Lille`, + Region: `South`, + PostalCode: `59000`, + Country: `France`, + Phone: `20.16.10.16`, + Fax: `20.16.10.17` + })); + this.push(new CustomersDataItem( + { + ID: `FOLKO`, + CompanyName: `Folk och fä HB`, + ContactName: `Maria Larsson`, + ContactTitle: `Owner`, + Address: `Åkergatan 24`, + City: `Bräcke`, + Region: `East`, + PostalCode: `S-844 67`, + Country: `Sweden`, + Phone: `0695-34 67 21`, + Fax: `0695 33-4455` + })); + this.push(new CustomersDataItem( + { + ID: `FRANK`, + CompanyName: `Frankenversand`, + ContactName: `Peter Franken`, + ContactTitle: `Marketing Manager`, + Address: `Berliner Platz 43`, + City: `München`, + Region: `East`, + PostalCode: `80805`, + Country: `Germany`, + Phone: `089-0877310`, + Fax: `089-0877451` + })); + this.push(new CustomersDataItem( + { + ID: `FRANR`, + CompanyName: `France restauration`, + ContactName: `Carine Schmitt`, + ContactTitle: `Marketing Manager`, + Address: `54, rue Royale`, + City: `Nantes`, + Region: `South`, + PostalCode: `44000`, + Country: `France`, + Phone: `40.32.21.21`, + Fax: `40.32.21.20` + })); + this.push(new CustomersDataItem( + { + ID: `FRANS`, + CompanyName: `Franchi S.p.A.`, + ContactName: `Paolo Accorti`, + ContactTitle: `Sales Representative`, + Address: `Via Monte Bianco 34`, + City: `Torino`, + Region: `East`, + PostalCode: `10100`, + Country: `Italy`, + Phone: `011-4988260`, + Fax: `011-4988261` + })); + } +} diff --git a/samples/grids/grid/column-pinning-both-sides/src/index.css b/samples/grids/grid/column-pinning-both-sides/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/grid/column-pinning-both-sides/src/index.tsx b/samples/grids/grid/column-pinning-both-sides/src/index.tsx new file mode 100644 index 0000000000..bcfcda9cd3 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/src/index.tsx @@ -0,0 +1,122 @@ +import React, { useRef, useState, useEffect } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { + ColumnPinningPosition, + IgrGridToolbar, + IgrGridToolbarActions, + IgrPinningConfig, + IgrGrid, + IgrColumn, +} from "igniteui-react-grids"; +import { IgrButton } from "igniteui-react"; +import { CustomersData } from "./CustomersData"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; + +export default function App() { + const gridRef = useRef(null); + const [data, setData] = useState([]); + const [columns, setColumns] = useState([]); + + const pinningConfig: IgrPinningConfig = { + columns: ColumnPinningPosition.End, + }; + + useEffect(() => { + const customers = new CustomersData(); + + setData(customers); + setColumns([ + { field: "CompanyName", header: "Company Name", width: 300 }, + { + field: "ContactName", + header: "Contact Name", + width: 200, + pinned: true, + pinningPosition: ColumnPinningPosition.End, + }, + { + field: "ContactTitle", + header: "Contact Title", + width: 200, + pinned: true, + pinningPosition: ColumnPinningPosition.End, + }, + { field: "Address", header: "Address", width: 300 }, + { field: "City", header: "City", width: 120 }, + { field: "Region", header: "Region", width: 120 }, + { field: "PostalCode", header: "Postal Code", width: 150 }, + { field: "Phone", header: "Phone", width: 150 }, + { field: "Fax", header: "Fax", width: 150 }, + ]); + }, []); + + const pinLeft = () => { + gridRef.current?.selectedColumns().forEach((col: IgrColumn) => { + col.pinningPosition = ColumnPinningPosition.Start; + col.pinned = true; + }); + }; + const pinRight = () => { + gridRef.current?.selectedColumns().forEach((col: IgrColumn) => { + col.pinningPosition = ColumnPinningPosition.End; + col.pinned = true; + }); + }; + const unpinColumn = () => { + gridRef.current?.selectedColumns().forEach((col: IgrColumn) => { + col.pinned = false; + }); + }; + + return ( +
+
+ + + + + Unpin Column + + + Pin Left + + + Pin Right + + + + + {columns.map((c) => ( + +
+
+ ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot( + document.getElementById("root") as HTMLElement, +); +root.render(); diff --git a/samples/grids/grid/column-pinning-both-sides/src/react-app-env.d.ts b/samples/grids/grid/column-pinning-both-sides/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/grid/column-pinning-both-sides/tsconfig.json b/samples/grids/grid/column-pinning-both-sides/tsconfig.json new file mode 100644 index 0000000000..2e56e9a399 --- /dev/null +++ b/samples/grids/grid/column-pinning-both-sides/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": ["es6", "dom"], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": ["src"] +} diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/.eslintrc.js b/samples/grids/hierarchical-grid/column-pinning-both-sides/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/ReadMe.md b/samples/grids/hierarchical-grid/column-pinning-both-sides/ReadMe.md new file mode 100644 index 0000000000..7f3f99e103 --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Row Drag Base feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/row-drag-base +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json new file mode 100644 index 0000000000..371824e9d6 --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.2", + "igniteui-react-core": "19.2.2", + "igniteui-react-datasources": "19.2.2", + "igniteui-react-grids": "19.3.0-rc.2", + "igniteui-react-inputs": "19.2.2", + "igniteui-react-layouts": "19.2.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/public/index.html b/samples/grids/hierarchical-grid/column-pinning-both-sides/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/sandbox.config.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/HierarchicalCustomersData.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/HierarchicalCustomersData.json new file mode 100644 index 0000000000..8c1cb2c4ac --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/HierarchicalCustomersData.json @@ -0,0 +1,37940 @@ +[ + { + "CustomerID": "VINET", + "Company": "Vins et alcools Chevalier", + "ContactName": "Paul Henriot", + "ContactTitle": "Accounting Manager", + "Address": "59 rue de l'Abbaye", + "City": "Reims", + "PostalCode": 51100, + "Country": "France", + "Phone": "26.47.15.10", + "Fax": "26.47.15.11", + "Orders": [ + { + "OrderID": 10248, + "EmployeeID": 5, + "OrderDate": "1996-07-04T00:00:00", + "RequiredDate": "1996-08-01T00:00:00", + "ShippedDate": "1996-07-16T00:00:00", + "ShipVia": 3, + "Freight": 32.38, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0, + "Weight": 2.5, + "Length": 25.6, + "TotalPrice": 225.75 + }, + { + "ProductID": 42, + "UnitPrice": 9.8, + "Quantity": 10, + "Discount": 0, + "Weight": 2.1, + "Length": 29.3, + "TotalPrice": 250.5 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, + "Discount": 0, + "Weight": 2.7, + "Length": 24.8, + "TotalPrice": 220.25 + } + ] + } + ] + }, + { + "CustomerID": "TOMSP", + "Company": "Toms Spezialitäten", + "ContactName": "Karin Josephs", + "ContactTitle": "Marketing Manager", + "Address": "Luisenstr. 48", + "City": "Münster", + "PostalCode": 44087, + "Country": "Germany", + "Phone": "0251-031259", + "Fax": "0251-035695", + "Orders": [ + { + "OrderID": 10249, + "EmployeeID": 6, + "OrderDate": "1996-07-05T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-10T00:00:00", + "ShipVia": 1, + "Freight": 11.61, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0, + "Weight": 3.2, + "Length": 28.6, + "TotalPrice": 253.75 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 40, + "Discount": 0, + "Weight": 2.5, + "Length": 25.6, + "TotalPrice": 225.75 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Madrid", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10250, + "EmployeeID": 4, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-12T00:00:00", + "ShipVia": 2, + "Freight": 65.83, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0, + "Weight": 2.9, + "Length": 26.9, + "TotalPrice": 233.5 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 35, + "Discount": 0.16, + "Weight": 3.5, + "Length": 27.4, + "TotalPrice": 261.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.16, + "Weight": 2.2, + "Length": 30.2, + "TotalPrice": 249.75 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10251, + "EmployeeID": 3, + "OrderDate": "1996-07-08T00:00:00", + "RequiredDate": "1996-08-05T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 1, + "Freight": 41.34, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.06, + "Weight": 2.6, + "Length": 26.8, + "TotalPrice": 226.5 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.06, + "Weight": 3.1, + "Length": 24.3, + "TotalPrice": 219.25 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0, + "Weight": 2.4, + "Length": 23.7, + "TotalPrice": 207 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10252, + "EmployeeID": 4, + "OrderDate": "1996-07-09T00:00:00", + "RequiredDate": "1996-08-06T00:00:00", + "ShippedDate": "1996-07-11T00:00:00", + "ShipVia": 2, + "Freight": 51.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Orders": [ + { + "OrderID": 10254, + "EmployeeID": 5, + "OrderDate": "1996-07-11T00:00:00", + "RequiredDate": "1996-08-08T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 2, + "Freight": 22.98, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 10255, + "EmployeeID": 9, + "OrderDate": "1996-07-12T00:00:00", + "RequiredDate": "1996-08-09T00:00:00", + "ShippedDate": "1996-07-15T00:00:00", + "ShipVia": 3, + "Freight": 148.33, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10256, + "EmployeeID": 3, + "OrderDate": "1996-07-15T00:00:00", + "RequiredDate": "1996-08-12T00:00:00", + "ShippedDate": "1996-07-17T00:00:00", + "ShipVia": 2, + "Freight": 13.97, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10257, + "EmployeeID": 4, + "OrderDate": "1996-07-16T00:00:00", + "RequiredDate": "1996-08-13T00:00:00", + "ShippedDate": "1996-07-22T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10258, + "EmployeeID": 1, + "OrderDate": "1996-07-17T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-07-23T00:00:00", + "ShipVia": 1, + "Freight": 140.51, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 65, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "CENTC", + "Company": "Centro comercial Moctezuma", + "ContactName": "Francisco Chang", + "ContactTitle": "Marketing Manager", + "Address": "Sierras de Granada 9993", + "City": "México D.F.", + "PostalCode": 5022, + "Country": "Mexico", + "Phone": "(5) 555-3392", + "Fax": "(5) 555-7293", + "Orders": [ + { + "OrderID": 10259, + "EmployeeID": 4, + "OrderDate": "1996-07-18T00:00:00", + "RequiredDate": "1996-08-15T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 3.25, + "ShipName": "Centro comercial Moctezuma", + "ShipAddress": "Sierras de Granada 9993", + "ShipCity": "México D.F.", + "ShipPostalCode": 5022, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 1, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10260, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-29T00:00:00", + "ShipVia": 1, + "Freight": 55.09, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 16, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10261, + "EmployeeID": 4, + "OrderDate": "1996-07-19T00:00:00", + "RequiredDate": "1996-08-16T00:00:00", + "ShippedDate": "1996-07-30T00:00:00", + "ShipVia": 2, + "Freight": 3.05, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10262, + "EmployeeID": 8, + "OrderDate": "1996-07-22T00:00:00", + "RequiredDate": "1996-08-19T00:00:00", + "ShippedDate": "1996-07-25T00:00:00", + "ShipVia": 3, + "Freight": 48.29, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10263, + "EmployeeID": 9, + "OrderDate": "1996-07-23T00:00:00", + "RequiredDate": "1996-08-20T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 146.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 36, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10264, + "EmployeeID": 6, + "OrderDate": "1996-07-24T00:00:00", + "RequiredDate": "1996-08-21T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "ShipVia": 3, + "Freight": 3.67, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10265, + "EmployeeID": 2, + "OrderDate": "1996-07-25T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 1, + "Freight": 55.28, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10266, + "EmployeeID": 3, + "OrderDate": "1996-07-26T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-07-31T00:00:00", + "ShipVia": 3, + "Freight": 25.73, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10267, + "EmployeeID": 4, + "OrderDate": "1996-07-29T00:00:00", + "RequiredDate": "1996-08-26T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 1, + "Freight": 208.58, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "GROSR", + "Company": "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", + "Orders": [ + { + "OrderID": 10268, + "EmployeeID": 8, + "OrderDate": "1996-07-30T00:00:00", + "RequiredDate": "1996-08-27T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 3, + "Freight": 66.29, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10269, + "EmployeeID": 5, + "OrderDate": "1996-07-31T00:00:00", + "RequiredDate": "1996-08-14T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 4.56, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10270, + "EmployeeID": 1, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-02T00:00:00", + "ShipVia": 1, + "Freight": 136.54, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10271, + "EmployeeID": 6, + "OrderDate": "1996-08-01T00:00:00", + "RequiredDate": "1996-08-29T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", + "ShipVia": 2, + "Freight": 4.54, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10272, + "EmployeeID": 6, + "OrderDate": "1996-08-02T00:00:00", + "RequiredDate": "1996-08-30T00:00:00", + "ShippedDate": "1996-08-06T00:00:00", + "ShipVia": 2, + "Freight": 98.03, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10273, + "EmployeeID": 3, + "OrderDate": "1996-08-05T00:00:00", + "RequiredDate": "1996-09-02T00:00:00", + "ShippedDate": "1996-08-12T00:00:00", + "ShipVia": 3, + "Freight": 76.07, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 33, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "VINET", + "Company": "Vins et alcools Chevalier", + "ContactName": "Paul Henriot", + "ContactTitle": "Accounting Manager", + "Address": "59 rue de l'Abbaye", + "City": "Reims", + "PostalCode": 51100, + "Country": "France", + "Phone": "26.47.15.10", + "Fax": "26.47.15.11", + "Orders": [ + { + "OrderID": 10274, + "EmployeeID": 6, + "OrderDate": "1996-08-06T00:00:00", + "RequiredDate": "1996-09-03T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 1, + "Freight": 6.01, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 7, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10275, + "EmployeeID": 1, + "OrderDate": "1996-08-07T00:00:00", + "RequiredDate": "1996-09-04T00:00:00", + "ShippedDate": "1996-08-09T00:00:00", + "ShipVia": 1, + "Freight": 26.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 6, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10276, + "EmployeeID": 8, + "OrderDate": "1996-08-08T00:00:00", + "RequiredDate": "1996-08-22T00:00:00", + "ShippedDate": "1996-08-14T00:00:00", + "ShipVia": 3, + "Freight": 13.84, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", + "Orders": [ + { + "OrderID": 10277, + "EmployeeID": 2, + "OrderDate": "1996-08-09T00:00:00", + "RequiredDate": "1996-09-06T00:00:00", + "ShippedDate": "1996-08-13T00:00:00", + "ShipVia": 3, + "Freight": 125.77, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10278, + "EmployeeID": 8, + "OrderDate": "1996-08-12T00:00:00", + "RequiredDate": "1996-09-09T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 92.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10279, + "EmployeeID": 8, + "OrderDate": "1996-08-13T00:00:00", + "RequiredDate": "1996-09-10T00:00:00", + "ShippedDate": "1996-08-16T00:00:00", + "ShipVia": 2, + "Freight": 25.83, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 34000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10280, + "EmployeeID": 2, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-09-11T00:00:00", + "ShippedDate": "1996-09-12T00:00:00", + "ShipVia": 1, + "Freight": 8.98, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 50000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10281, + "EmployeeID": 4, + "OrderDate": "1996-08-14T00:00:00", + "RequiredDate": "1996-08-28T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 2.94, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 + } + ] + }, + { + "OrderID": 10282, + "EmployeeID": 4, + "OrderDate": "1996-08-15T00:00:00", + "RequiredDate": "1996-09-12T00:00:00", + "ShippedDate": "1996-08-21T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10283, + "EmployeeID": 3, + "OrderDate": "1996-08-16T00:00:00", + "RequiredDate": "1996-09-13T00:00:00", + "ShippedDate": "1996-08-23T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10284, + "EmployeeID": 4, + "OrderDate": "1996-08-19T00:00:00", + "RequiredDate": "1996-09-16T00:00:00", + "ShippedDate": "1996-08-27T00:00:00", + "ShipVia": 1, + "Freight": 76.56, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 67, + "UnitPrice": 11.2, + "Quantity": 5, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10285, + "EmployeeID": 1, + "OrderDate": "1996-08-20T00:00:00", + "RequiredDate": "1996-09-17T00:00:00", + "ShippedDate": "1996-08-26T00:00:00", + "ShipVia": 2, + "Freight": 76.83, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 36, + "Discount": 0.2 + } + ] + }, + { + "OrderID": 10286, + "EmployeeID": 8, + "OrderDate": "1996-08-21T00:00:00", + "RequiredDate": "1996-09-18T00:00:00", + "ShippedDate": "1996-08-30T00:00:00", + "ShipVia": 3, + "Freight": 229.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10287, + "EmployeeID": 8, + "OrderDate": "1996-08-22T00:00:00", + "RequiredDate": "1996-09-19T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 12.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 15, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10288, + "EmployeeID": 4, + "OrderDate": "1996-08-23T00:00:00", + "RequiredDate": "1996-09-20T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 7.45, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 10289, + "EmployeeID": 7, + "OrderDate": "1996-08-26T00:00:00", + "RequiredDate": "1996-09-23T00:00:00", + "ShippedDate": "1996-08-28T00:00:00", + "ShipVia": 3, + "Freight": 22.77, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 18000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", + "Orders": [ + { + "OrderID": 10290, + "EmployeeID": 8, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-03T00:00:00", + "ShipVia": 1, + "Freight": 79.7, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10291, + "EmployeeID": 6, + "OrderDate": "1996-08-27T00:00:00", + "RequiredDate": "1996-09-24T00:00:00", + "ShippedDate": "1996-09-04T00:00:00", + "ShipVia": 2, + "Freight": 6.4, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 24, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 2, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", + "Orders": [ + { + "OrderID": 10292, + "EmployeeID": 1, + "OrderDate": "1996-08-28T00:00:00", + "RequiredDate": "1996-09-25T00:00:00", + "ShippedDate": "1996-09-02T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10293, + "EmployeeID": 1, + "OrderDate": "1996-08-29T00:00:00", + "RequiredDate": "1996-09-26T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 3, + "Freight": 21.18, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10294, + "EmployeeID": 4, + "OrderDate": "1996-08-30T00:00:00", + "RequiredDate": "1996-09-27T00:00:00", + "ShippedDate": "1996-09-05T00:00:00", + "ShipVia": 2, + "Freight": 147.26, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VINET", + "Company": "Vins et alcools Chevalier", + "ContactName": "Paul Henriot", + "ContactTitle": "Accounting Manager", + "Address": "59 rue de l'Abbaye", + "City": "Reims", + "PostalCode": 51100, + "Country": "France", + "Phone": "26.47.15.10", + "Fax": "26.47.15.11", + "Orders": [ + { + "OrderID": 10295, + "EmployeeID": 2, + "OrderDate": "1996-09-02T00:00:00", + "RequiredDate": "1996-09-30T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 1.15, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10296, + "EmployeeID": 6, + "OrderDate": "1996-09-03T00:00:00", + "RequiredDate": "1996-10-01T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10297, + "EmployeeID": 5, + "OrderDate": "1996-09-04T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-10T00:00:00", + "ShipVia": 2, + "Freight": 5.74, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10298, + "EmployeeID": 6, + "OrderDate": "1996-09-05T00:00:00", + "RequiredDate": "1996-10-03T00:00:00", + "ShippedDate": "1996-09-11T00:00:00", + "ShipVia": 2, + "Freight": 168.22, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10299, + "EmployeeID": 4, + "OrderDate": "1996-09-06T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-13T00:00:00", + "ShipVia": 2, + "Freight": 29.76, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10300, + "EmployeeID": 2, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 17.68, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10301, + "EmployeeID": 8, + "OrderDate": "1996-09-09T00:00:00", + "RequiredDate": "1996-10-07T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 45.08, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10302, + "EmployeeID": 4, + "OrderDate": "1996-09-10T00:00:00", + "RequiredDate": "1996-10-08T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 10303, + "EmployeeID": 7, + "OrderDate": "1996-09-11T00:00:00", + "RequiredDate": "1996-10-09T00:00:00", + "ShippedDate": "1996-09-18T00:00:00", + "ShipVia": 2, + "Freight": 107.83, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10304, + "EmployeeID": 1, + "OrderDate": "1996-09-12T00:00:00", + "RequiredDate": "1996-10-10T00:00:00", + "ShippedDate": "1996-09-17T00:00:00", + "ShipVia": 2, + "Freight": 63.79, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10305, + "EmployeeID": 8, + "OrderDate": "1996-09-13T00:00:00", + "RequiredDate": "1996-10-11T00:00:00", + "ShippedDate": "1996-10-09T00:00:00", + "ShipVia": 3, + "Freight": 257.62, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10306, + "EmployeeID": 1, + "OrderDate": "1996-09-16T00:00:00", + "RequiredDate": "1996-10-14T00:00:00", + "ShippedDate": "1996-09-23T00:00:00", + "ShipVia": 3, + "Freight": 7.56, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LONEP", + "Company": "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", + "Orders": [ + { + "OrderID": 10307, + "EmployeeID": 2, + "OrderDate": "1996-09-17T00:00:00", + "RequiredDate": "1996-10-15T00:00:00", + "ShippedDate": "1996-09-25T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", + "Orders": [ + { + "OrderID": 10308, + "EmployeeID": 7, + "OrderDate": "1996-09-18T00:00:00", + "RequiredDate": "1996-10-16T00:00:00", + "ShippedDate": "1996-09-24T00:00:00", + "ShipVia": 3, + "Freight": 1.61, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10309, + "EmployeeID": 3, + "OrderDate": "1996-09-19T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 1, + "Freight": 47.3, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "THEBI", + "Company": "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", + "Orders": [ + { + "OrderID": 10310, + "EmployeeID": 8, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-18T00:00:00", + "ShippedDate": "1996-09-27T00:00:00", + "ShipVia": 2, + "Freight": 17.52, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", + "Orders": [ + { + "OrderID": 10311, + "EmployeeID": 1, + "OrderDate": "1996-09-20T00:00:00", + "RequiredDate": "1996-10-04T00:00:00", + "ShippedDate": "1996-09-26T00:00:00", + "ShipVia": 3, + "Freight": 24.69, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 7, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10312, + "EmployeeID": 2, + "OrderDate": "1996-09-23T00:00:00", + "RequiredDate": "1996-10-21T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 40.26, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10313, + "EmployeeID": 2, + "OrderDate": "1996-09-24T00:00:00", + "RequiredDate": "1996-10-22T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 1.96, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10314, + "EmployeeID": 1, + "OrderDate": "1996-09-25T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 74.16, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 25, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 42000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10315, + "EmployeeID": 4, + "OrderDate": "1996-09-26T00:00:00", + "RequiredDate": "1996-10-24T00:00:00", + "ShippedDate": "1996-10-03T00:00:00", + "ShipVia": 2, + "Freight": 41.76, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40301, + "ShipPostalCode": 32000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10316, + "EmployeeID": 1, + "OrderDate": "1996-09-27T00:00:00", + "RequiredDate": "1996-10-25T00:00:00", + "ShippedDate": "1996-10-08T00:00:00", + "ShipVia": 3, + "Freight": 150.15, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 70, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LONEP", + "Company": "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", + "Orders": [ + { + "OrderID": 10317, + "EmployeeID": 6, + "OrderDate": "1996-09-30T00:00:00", + "RequiredDate": "1996-10-28T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 12.69, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 30000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10318, + "EmployeeID": 8, + "OrderDate": "1996-10-01T00:00:00", + "RequiredDate": "1996-10-29T00:00:00", + "ShippedDate": "1996-10-04T00:00:00", + "ShipVia": 2, + "Freight": 4.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 30575, + "ShipPostalCode": 43000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10319, + "EmployeeID": 7, + "OrderDate": "1996-10-02T00:00:00", + "RequiredDate": "1996-10-30T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 3, + "Freight": 64.5, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10320, + "EmployeeID": 5, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-17T00:00:00", + "ShippedDate": "1996-10-18T00:00:00", + "ShipVia": 3, + "Freight": 34.57, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 49000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10321, + "EmployeeID": 3, + "OrderDate": "1996-10-03T00:00:00", + "RequiredDate": "1996-10-31T00:00:00", + "ShippedDate": "1996-10-11T00:00:00", + "ShipVia": 2, + "Freight": 3.43, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 80331, + "ShipPostalCode": 24000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", + "Orders": [ + { + "OrderID": 10322, + "EmployeeID": 7, + "OrderDate": "1996-10-04T00:00:00", + "RequiredDate": "1996-11-01T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 3, + "Freight": 0.4, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10323, + "EmployeeID": 4, + "OrderDate": "1996-10-07T00:00:00", + "RequiredDate": "1996-11-04T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 4.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 15, + "UnitPrice": 12.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10324, + "EmployeeID": 9, + "OrderDate": "1996-10-08T00:00:00", + "RequiredDate": "1996-11-05T00:00:00", + "ShippedDate": "1996-10-10T00:00:00", + "ShipVia": 1, + "Freight": 214.27, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 70, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 80, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10325, + "EmployeeID": 1, + "OrderDate": "1996-10-09T00:00:00", + "RequiredDate": "1996-10-23T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 3, + "Freight": 64.86, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 20, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", + "Orders": [ + { + "OrderID": 10326, + "EmployeeID": 4, + "OrderDate": "1996-10-10T00:00:00", + "RequiredDate": "1996-11-07T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 2, + "Freight": 77.92, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 31000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10327, + "EmployeeID": 2, + "OrderDate": "1996-10-11T00:00:00", + "RequiredDate": "1996-11-08T00:00:00", + "ShippedDate": "1996-10-14T00:00:00", + "ShipVia": 1, + "Freight": 63.36, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 30, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", + "Orders": [ + { + "OrderID": 10328, + "EmployeeID": 4, + "OrderDate": "1996-10-14T00:00:00", + "RequiredDate": "1996-11-11T00:00:00", + "ShippedDate": "1996-10-17T00:00:00", + "ShipVia": 3, + "Freight": 87.03, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10329, + "EmployeeID": 4, + "OrderDate": "1996-10-15T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-10-23T00:00:00", + "ShipVia": 2, + "Freight": 191.67, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 12, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10330, + "EmployeeID": 3, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10331, + "EmployeeID": 9, + "OrderDate": "1996-10-16T00:00:00", + "RequiredDate": "1996-11-27T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 1, + "Freight": 10.19, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 49000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10332, + "EmployeeID": 3, + "OrderDate": "1996-10-17T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-10-21T00:00:00", + "ShipVia": 2, + "Freight": 52.84, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 16, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10333, + "EmployeeID": 5, + "OrderDate": "1996-10-18T00:00:00", + "RequiredDate": "1996-11-15T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 3, + "Freight": 0.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 40, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10334, + "EmployeeID": 8, + "OrderDate": "1996-10-21T00:00:00", + "RequiredDate": "1996-11-18T00:00:00", + "ShippedDate": "1996-10-28T00:00:00", + "ShipVia": 2, + "Freight": 8.56, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10335, + "EmployeeID": 7, + "OrderDate": "1996-10-22T00:00:00", + "RequiredDate": "1996-11-19T00:00:00", + "ShippedDate": "1996-10-24T00:00:00", + "ShipVia": 2, + "Freight": 42.11, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 7, + "Discount": 0.2 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 25.6, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 48, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", + "Orders": [ + { + "OrderID": 10336, + "EmployeeID": 7, + "OrderDate": "1996-10-23T00:00:00", + "RequiredDate": "1996-11-20T00:00:00", + "ShippedDate": "1996-10-25T00:00:00", + "ShipVia": 2, + "Freight": 15.51, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 18, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10337, + "EmployeeID": 4, + "OrderDate": "1996-10-24T00:00:00", + "RequiredDate": "1996-11-21T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 108.26, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10338, + "EmployeeID": 4, + "OrderDate": "1996-10-25T00:00:00", + "RequiredDate": "1996-11-22T00:00:00", + "ShippedDate": "1996-10-29T00:00:00", + "ShipVia": 3, + "Freight": 84.21, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 46000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10339, + "EmployeeID": 2, + "OrderDate": "1996-10-28T00:00:00", + "RequiredDate": "1996-11-25T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 15.66, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 28, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10340, + "EmployeeID": 1, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 166.31, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 40, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", + "Orders": [ + { + "OrderID": 10341, + "EmployeeID": 7, + "OrderDate": "1996-10-29T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 3, + "Freight": 26.78, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10342, + "EmployeeID": 4, + "OrderDate": "1996-10-30T00:00:00", + "RequiredDate": "1996-11-13T00:00:00", + "ShippedDate": "1996-11-04T00:00:00", + "ShipVia": 2, + "Freight": 54.83, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 56, + "Discount": 0.2 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 40, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10343, + "EmployeeID": 4, + "OrderDate": "1996-10-31T00:00:00", + "RequiredDate": "1996-11-28T00:00:00", + "ShippedDate": "1996-11-06T00:00:00", + "ShipVia": 1, + "Freight": 110.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10344, + "EmployeeID": 4, + "OrderDate": "1996-11-01T00:00:00", + "RequiredDate": "1996-11-29T00:00:00", + "ShippedDate": "1996-11-05T00:00:00", + "ShipVia": 2, + "Freight": 23.29, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10345, + "EmployeeID": 2, + "OrderDate": "1996-11-04T00:00:00", + "RequiredDate": "1996-12-02T00:00:00", + "ShippedDate": "1996-11-11T00:00:00", + "ShipVia": 2, + "Freight": 249.06, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 32, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10346, + "EmployeeID": 3, + "OrderDate": "1996-11-05T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 142.08, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Orders": [ + { + "OrderID": 10347, + "EmployeeID": 4, + "OrderDate": "1996-11-06T00:00:00", + "RequiredDate": "1996-12-04T00:00:00", + "ShippedDate": "1996-11-08T00:00:00", + "ShipVia": 3, + "Freight": 3.1, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 6, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10348, + "EmployeeID": 4, + "OrderDate": "1996-11-07T00:00:00", + "RequiredDate": "1996-12-05T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 2, + "Freight": 0.78, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10349, + "EmployeeID": 7, + "OrderDate": "1996-11-08T00:00:00", + "RequiredDate": "1996-12-06T00:00:00", + "ShippedDate": "1996-11-15T00:00:00", + "ShipVia": 1, + "Freight": 8.63, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10350, + "EmployeeID": 6, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 64.19, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 18, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10351, + "EmployeeID": 1, + "OrderDate": "1996-11-11T00:00:00", + "RequiredDate": "1996-12-09T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 162.33, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 13, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 77, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", + "Orders": [ + { + "OrderID": 10352, + "EmployeeID": 3, + "OrderDate": "1996-11-12T00:00:00", + "RequiredDate": "1996-11-26T00:00:00", + "ShippedDate": "1996-11-18T00:00:00", + "ShipVia": 3, + "Freight": 1.3, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 20, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10353, + "EmployeeID": 7, + "OrderDate": "1996-11-13T00:00:00", + "RequiredDate": "1996-12-11T00:00:00", + "ShippedDate": "1996-11-25T00:00:00", + "ShipVia": 3, + "Freight": 360.63, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", + "Orders": [ + { + "OrderID": 10354, + "EmployeeID": 8, + "OrderDate": "1996-11-14T00:00:00", + "RequiredDate": "1996-12-12T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 3, + "Freight": 53.8, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 19000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10355, + "EmployeeID": 6, + "OrderDate": "1996-11-15T00:00:00", + "RequiredDate": "1996-12-13T00:00:00", + "ShippedDate": "1996-11-20T00:00:00", + "ShipVia": 1, + "Freight": 41.95, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 37000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10356, + "EmployeeID": 6, + "OrderDate": "1996-11-18T00:00:00", + "RequiredDate": "1996-12-16T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 2, + "Freight": 36.71, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10357, + "EmployeeID": 1, + "OrderDate": "1996-11-19T00:00:00", + "RequiredDate": "1996-12-17T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 8, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10358, + "EmployeeID": 5, + "OrderDate": "1996-11-20T00:00:00", + "RequiredDate": "1996-12-18T00:00:00", + "ShippedDate": "1996-11-27T00:00:00", + "ShipVia": 1, + "Freight": 19.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10359, + "EmployeeID": 5, + "OrderDate": "1996-11-21T00:00:00", + "RequiredDate": "1996-12-19T00:00:00", + "ShippedDate": "1996-11-26T00:00:00", + "ShipVia": 3, + "Freight": 288.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 56, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 80, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10360, + "EmployeeID": 4, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 131.7, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 28, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10361, + "EmployeeID": 1, + "OrderDate": "1996-11-22T00:00:00", + "RequiredDate": "1996-12-20T00:00:00", + "ShippedDate": "1996-12-03T00:00:00", + "ShipVia": 2, + "Freight": 183.17, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 54, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 55, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10362, + "EmployeeID": 3, + "OrderDate": "1996-11-25T00:00:00", + "RequiredDate": "1996-12-23T00:00:00", + "ShippedDate": "1996-11-28T00:00:00", + "ShipVia": 1, + "Freight": 96.04, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", + "Orders": [ + { + "OrderID": 10363, + "EmployeeID": 4, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1996-12-24T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 3, + "Freight": 30.54, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", + "Orders": [ + { + "OrderID": 10364, + "EmployeeID": 1, + "OrderDate": "1996-11-26T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-04T00:00:00", + "ShipVia": 1, + "Freight": 71.97, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Orders": [ + { + "OrderID": 10365, + "EmployeeID": 3, + "OrderDate": "1996-11-27T00:00:00", + "RequiredDate": "1996-12-25T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 22, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", + "Orders": [ + { + "OrderID": 10366, + "EmployeeID": 8, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-30T00:00:00", + "ShipVia": 2, + "Freight": 10.14, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10367, + "EmployeeID": 7, + "OrderDate": "1996-11-28T00:00:00", + "RequiredDate": "1996-12-26T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 3, + "Freight": 13.55, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 36, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10368, + "EmployeeID": 2, + "OrderDate": "1996-11-29T00:00:00", + "RequiredDate": "1996-12-27T00:00:00", + "ShippedDate": "1996-12-02T00:00:00", + "ShipVia": 2, + "Freight": 101.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 13, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10369, + "EmployeeID": 8, + "OrderDate": "1996-12-02T00:00:00", + "RequiredDate": "1996-12-30T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 195.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 18, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Orders": [ + { + "OrderID": 10370, + "EmployeeID": 6, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-27T00:00:00", + "ShipVia": 2, + "Freight": 1.17, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10371, + "EmployeeID": 1, + "OrderDate": "1996-12-03T00:00:00", + "RequiredDate": "1996-12-31T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 1, + "Freight": 0.45, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 6, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10372, + "EmployeeID": 5, + "OrderDate": "1996-12-04T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 2, + "Freight": 890.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 42, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10373, + "EmployeeID": 4, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-11T00:00:00", + "ShipVia": 3, + "Freight": 124.12, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10374, + "EmployeeID": 1, + "OrderDate": "1996-12-05T00:00:00", + "RequiredDate": "1997-01-02T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "ShipVia": 3, + "Freight": 3.94, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 10.6, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGC", + "Company": "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", + "Orders": [ + { + "OrderID": 10375, + "EmployeeID": 3, + "OrderDate": "1996-12-06T00:00:00", + "RequiredDate": "1997-01-03T00:00:00", + "ShippedDate": "1996-12-09T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 34000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10376, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 2, + "Freight": 20.39, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 13000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10377, + "EmployeeID": 1, + "OrderDate": "1996-12-09T00:00:00", + "RequiredDate": "1997-01-06T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 3, + "Freight": 22.21, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 41000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 27000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10378, + "EmployeeID": 5, + "OrderDate": "1996-12-10T00:00:00", + "RequiredDate": "1997-01-07T00:00:00", + "ShippedDate": "1996-12-19T00:00:00", + "ShipVia": 3, + "Freight": 5.44, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10379, + "EmployeeID": 2, + "OrderDate": "1996-12-11T00:00:00", + "RequiredDate": "1997-01-08T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "ShipVia": 1, + "Freight": 45.03, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10380, + "EmployeeID": 8, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 35.03, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10381, + "EmployeeID": 3, + "OrderDate": "1996-12-12T00:00:00", + "RequiredDate": "1997-01-09T00:00:00", + "ShippedDate": "1996-12-13T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10382, + "EmployeeID": 4, + "OrderDate": "1996-12-13T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1996-12-16T00:00:00", + "ShipVia": 1, + "Freight": 94.77, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 17, + "Quantity": 32, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 25000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10383, + "EmployeeID": 8, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-18T00:00:00", + "ShipVia": 3, + "Freight": 34.24, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 36000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 13000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10384, + "EmployeeID": 3, + "OrderDate": "1996-12-16T00:00:00", + "RequiredDate": "1997-01-13T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 3, + "Freight": 168.64, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 64.8, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10385, + "EmployeeID": 1, + "OrderDate": "1996-12-17T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1996-12-23T00:00:00", + "ShipVia": 2, + "Freight": 30.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Orders": [ + { + "OrderID": 10386, + "EmployeeID": 9, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-01T00:00:00", + "ShippedDate": "1996-12-25T00:00:00", + "ShipVia": 3, + "Freight": 13.99, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", + "Orders": [ + { + "OrderID": 10387, + "EmployeeID": 1, + "OrderDate": "1996-12-18T00:00:00", + "RequiredDate": "1997-01-15T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 2, + "Freight": 93.63, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10388, + "EmployeeID": 2, + "OrderDate": "1996-12-19T00:00:00", + "RequiredDate": "1997-01-16T00:00:00", + "ShippedDate": "1996-12-20T00:00:00", + "ShipVia": 1, + "Freight": 34.86, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 26000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10389, + "EmployeeID": 4, + "OrderDate": "1996-12-20T00:00:00", + "RequiredDate": "1997-01-17T00:00:00", + "ShippedDate": "1996-12-24T00:00:00", + "ShipVia": 2, + "Freight": 47.42, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10390, + "EmployeeID": 6, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-26T00:00:00", + "ShipVia": 1, + "Freight": 126.38, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 24, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", + "Orders": [ + { + "OrderID": 10391, + "EmployeeID": 3, + "OrderDate": "1996-12-23T00:00:00", + "RequiredDate": "1997-01-20T00:00:00", + "ShippedDate": "1996-12-31T00:00:00", + "ShipVia": 3, + "Freight": 5.45, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10392, + "EmployeeID": 2, + "OrderDate": "1996-12-24T00:00:00", + "RequiredDate": "1997-01-21T00:00:00", + "ShippedDate": "1997-01-01T00:00:00", + "ShipVia": 3, + "Freight": 122.46, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10393, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "ShipVia": 3, + "Freight": 126.56, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 42, + "Discount": 0.25 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 70, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGC", + "Company": "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", + "Orders": [ + { + "OrderID": 10394, + "EmployeeID": 1, + "OrderDate": "1996-12-25T00:00:00", + "RequiredDate": "1997-01-22T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10395, + "EmployeeID": 6, + "OrderDate": "1996-12-26T00:00:00", + "RequiredDate": "1997-01-23T00:00:00", + "ShippedDate": "1997-01-03T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10396, + "EmployeeID": 1, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-10T00:00:00", + "ShippedDate": "1997-01-06T00:00:00", + "ShipVia": 3, + "Freight": 135.35, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", + "Orders": [ + { + "OrderID": 10397, + "EmployeeID": 5, + "OrderDate": "1996-12-27T00:00:00", + "RequiredDate": "1997-01-24T00:00:00", + "ShippedDate": "1997-01-02T00:00:00", + "ShipVia": 1, + "Freight": 60.26, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 10, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10398, + "EmployeeID": 2, + "OrderDate": "1996-12-30T00:00:00", + "RequiredDate": "1997-01-27T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 89.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10399, + "EmployeeID": 8, + "OrderDate": "1996-12-31T00:00:00", + "RequiredDate": "1997-01-14T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 3, + "Freight": 27.36, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 47000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", + "Orders": [ + { + "OrderID": 10400, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 3, + "Freight": 83.93, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10401, + "EmployeeID": 1, + "OrderDate": "1997-01-01T00:00:00", + "RequiredDate": "1997-01-29T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 1, + "Freight": 12.51, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10402, + "EmployeeID": 8, + "OrderDate": "1997-01-02T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-10T00:00:00", + "ShipVia": 2, + "Freight": 67.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 65, + "Discount": 0 + } + ] + }, + { + "OrderID": 10403, + "EmployeeID": 4, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-09T00:00:00", + "ShipVia": 3, + "Freight": 73.79, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 21, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 10.2, + "Quantity": 70, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10404, + "EmployeeID": 2, + "OrderDate": "1997-01-03T00:00:00", + "RequiredDate": "1997-01-31T00:00:00", + "ShippedDate": "1997-01-08T00:00:00", + "ShipVia": 1, + "Freight": 155.97, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 30, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10405, + "EmployeeID": 1, + "OrderDate": "1997-01-06T00:00:00", + "RequiredDate": "1997-02-03T00:00:00", + "ShippedDate": "1997-01-22T00:00:00", + "ShipVia": 1, + "Freight": 34.82, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10406, + "EmployeeID": 7, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-13T00:00:00", + "ShipVia": 1, + "Freight": 108.04, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 15.2, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 2, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10407, + "EmployeeID": 2, + "OrderDate": "1997-01-07T00:00:00", + "RequiredDate": "1997-02-04T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 91.48, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", + "Orders": [ + { + "OrderID": 10408, + "EmployeeID": 8, + "OrderDate": "1997-01-08T00:00:00", + "RequiredDate": "1997-02-05T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 11.26, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 37, + "UnitPrice": 20.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", + "Orders": [ + { + "OrderID": 10409, + "EmployeeID": 3, + "OrderDate": "1997-01-09T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-01-14T00:00:00", + "ShipVia": 1, + "Freight": 29.83, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 28000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10410, + "EmployeeID": 3, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 3, + "Freight": 2.4, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 30000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 16, + "Discount": 0 + } + ] + }, + { + "OrderID": 10411, + "EmployeeID": 9, + "OrderDate": "1997-01-10T00:00:00", + "RequiredDate": "1997-02-07T00:00:00", + "ShippedDate": "1997-01-21T00:00:00", + "ShipVia": 3, + "Freight": 23.65, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 10000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 9, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10412, + "EmployeeID": 8, + "OrderDate": "1997-01-13T00:00:00", + "RequiredDate": "1997-02-10T00:00:00", + "ShippedDate": "1997-01-15T00:00:00", + "ShipVia": 2, + "Freight": 3.77, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 20, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10413, + "EmployeeID": 3, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-16T00:00:00", + "ShipVia": 2, + "Freight": 95.66, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Orders": [ + { + "OrderID": 10414, + "EmployeeID": 2, + "OrderDate": "1997-01-14T00:00:00", + "RequiredDate": "1997-02-11T00:00:00", + "ShippedDate": "1997-01-17T00:00:00", + "ShipVia": 3, + "Freight": 21.48, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 18, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGC", + "Company": "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", + "Orders": [ + { + "OrderID": 10415, + "EmployeeID": 3, + "OrderDate": "1997-01-15T00:00:00", + "RequiredDate": "1997-02-12T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10416, + "EmployeeID": 8, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 3, + "Freight": 22.72, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", + "Orders": [ + { + "OrderID": 10417, + "EmployeeID": 4, + "OrderDate": "1997-01-16T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-01-28T00:00:00", + "ShipVia": 3, + "Freight": 70.29, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10418, + "EmployeeID": 4, + "OrderDate": "1997-01-17T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-01-24T00:00:00", + "ShipVia": 1, + "Freight": 17.55, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 55, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 10419, + "EmployeeID": 4, + "OrderDate": "1997-01-20T00:00:00", + "RequiredDate": "1997-02-17T00:00:00", + "ShippedDate": "1997-01-30T00:00:00", + "ShipVia": 2, + "Freight": 137.35, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10420, + "EmployeeID": 3, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-02-18T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 44.12, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 9, + "UnitPrice": 77.6, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 2, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10421, + "EmployeeID": 8, + "OrderDate": "1997-01-21T00:00:00", + "RequiredDate": "1997-03-04T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 1, + "Freight": 99.23, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 10, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", + "Orders": [ + { + "OrderID": 10422, + "EmployeeID": 2, + "OrderDate": "1997-01-22T00:00:00", + "RequiredDate": "1997-02-19T00:00:00", + "ShippedDate": "1997-01-31T00:00:00", + "ShipVia": 1, + "Freight": 3.02, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 10423, + "EmployeeID": 6, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-06T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 3, + "Freight": 24.5, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 11000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10424, + "EmployeeID": 7, + "OrderDate": "1997-01-23T00:00:00", + "RequiredDate": "1997-02-20T00:00:00", + "ShippedDate": "1997-01-27T00:00:00", + "ShipVia": 2, + "Freight": 370.61, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 49, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10425, + "EmployeeID": 6, + "OrderDate": "1997-01-24T00:00:00", + "RequiredDate": "1997-02-21T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 7.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", + "Orders": [ + { + "OrderID": 10426, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-02-06T00:00:00", + "ShipVia": 1, + "Freight": 18.69, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 7, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10427, + "EmployeeID": 4, + "OrderDate": "1997-01-27T00:00:00", + "RequiredDate": "1997-02-24T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 31.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10428, + "EmployeeID": 7, + "OrderDate": "1997-01-28T00:00:00", + "RequiredDate": "1997-02-25T00:00:00", + "ShippedDate": "1997-02-04T00:00:00", + "ShipVia": 1, + "Freight": 11.09, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10429, + "EmployeeID": 3, + "OrderDate": "1997-01-29T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 56.63, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 35.1, + "Quantity": 35, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10430, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-03T00:00:00", + "ShipVia": 1, + "Freight": 458.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 70, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 46000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10431, + "EmployeeID": 4, + "OrderDate": "1997-01-30T00:00:00", + "RequiredDate": "1997-02-13T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 44.17, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10432, + "EmployeeID": 3, + "OrderDate": "1997-01-31T00:00:00", + "RequiredDate": "1997-02-14T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 4.34, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", + "Orders": [ + { + "OrderID": 10433, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 73.83, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 28, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 40000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10434, + "EmployeeID": 3, + "OrderDate": "1997-02-03T00:00:00", + "RequiredDate": "1997-03-03T00:00:00", + "ShippedDate": "1997-02-13T00:00:00", + "ShipVia": 2, + "Freight": 17.92, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 10000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 18, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", + "Orders": [ + { + "OrderID": 10435, + "EmployeeID": 8, + "OrderDate": "1997-02-04T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-07T00:00:00", + "ShipVia": 2, + "Freight": 9.21, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 38000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 16.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10436, + "EmployeeID": 3, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-11T00:00:00", + "ShipVia": 2, + "Freight": 156.66, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 24, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10437, + "EmployeeID": 8, + "OrderDate": "1997-02-05T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-02-12T00:00:00", + "ShipVia": 1, + "Freight": 19.97, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TOMSP", + "Company": "Toms Spezialitäten", + "ContactName": "Karin Josephs", + "ContactTitle": "Marketing Manager", + "Address": "Luisenstr. 48", + "City": "Münster", + "PostalCode": 44087, + "Country": "Germany", + "Phone": "0251-031259", + "Fax": "0251-035695", + "Orders": [ + { + "OrderID": 10438, + "EmployeeID": 3, + "OrderDate": "1997-02-06T00:00:00", + "RequiredDate": "1997-03-06T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 2, + "Freight": 8.24, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 15.6, + "Quantity": 15, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 38000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10439, + "EmployeeID": 6, + "OrderDate": "1997-02-07T00:00:00", + "RequiredDate": "1997-03-07T00:00:00", + "ShippedDate": "1997-02-10T00:00:00", + "ShipVia": 3, + "Freight": 4.07, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 19000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10440, + "EmployeeID": 4, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-10T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 86.53, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 45, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 49, + "Discount": 0.16 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 90, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10441, + "EmployeeID": 3, + "OrderDate": "1997-02-10T00:00:00", + "RequiredDate": "1997-03-24T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 73.02, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 35.1, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10442, + "EmployeeID": 3, + "OrderDate": "1997-02-11T00:00:00", + "RequiredDate": "1997-03-11T00:00:00", + "ShippedDate": "1997-02-18T00:00:00", + "ShipVia": 2, + "Freight": 47.94, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10443, + "EmployeeID": 8, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-14T00:00:00", + "ShipVia": 1, + "Freight": 13.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 19000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10444, + "EmployeeID": 3, + "OrderDate": "1997-02-12T00:00:00", + "RequiredDate": "1997-03-12T00:00:00", + "ShippedDate": "1997-02-21T00:00:00", + "ShipVia": 3, + "Freight": 3.5, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 21000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 31.2, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 14.4, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 30, + "Discount": 0 + } + ] + }, + { + "OrderID": 10445, + "EmployeeID": 3, + "OrderDate": "1997-02-13T00:00:00", + "RequiredDate": "1997-03-13T00:00:00", + "ShippedDate": "1997-02-20T00:00:00", + "ShipVia": 1, + "Freight": 9.3, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 11000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TOMSP", + "Company": "Toms Spezialitäten", + "ContactName": "Karin Josephs", + "ContactTitle": "Marketing Manager", + "Address": "Luisenstr. 48", + "City": "Münster", + "PostalCode": 44087, + "Country": "Germany", + "Phone": "0251-031259", + "Fax": "0251-035695", + "Orders": [ + { + "OrderID": 10446, + "EmployeeID": 6, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-02-19T00:00:00", + "ShipVia": 1, + "Freight": 14.68, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 15, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10447, + "EmployeeID": 4, + "OrderDate": "1997-02-14T00:00:00", + "RequiredDate": "1997-03-14T00:00:00", + "ShippedDate": "1997-03-07T00:00:00", + "ShipVia": 2, + "Freight": 68.66, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", + "ContactTitle": "Sales Representative", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", + "Orders": [ + { + "OrderID": 10448, + "EmployeeID": 4, + "OrderDate": "1997-02-17T00:00:00", + "RequiredDate": "1997-03-17T00:00:00", + "ShippedDate": "1997-02-24T00:00:00", + "ShipVia": 2, + "Freight": 38.82, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10449, + "EmployeeID": 3, + "OrderDate": "1997-02-18T00:00:00", + "RequiredDate": "1997-03-18T00:00:00", + "ShippedDate": "1997-02-27T00:00:00", + "ShipVia": 2, + "Freight": 53.3, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 5.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 39.4, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10450, + "EmployeeID": 8, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-19T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 7.23, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 6, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10451, + "EmployeeID": 4, + "OrderDate": "1997-02-19T00:00:00", + "RequiredDate": "1997-03-05T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 189.09, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 120, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 55, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10452, + "EmployeeID": 8, + "OrderDate": "1997-02-20T00:00:00", + "RequiredDate": "1997-03-20T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 1, + "Freight": 140.26, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 100, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 44000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10453, + "EmployeeID": 1, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-26T00:00:00", + "ShipVia": 2, + "Freight": 25.36, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 46000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 10.2, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10454, + "EmployeeID": 4, + "OrderDate": "1997-02-21T00:00:00", + "RequiredDate": "1997-03-21T00:00:00", + "ShippedDate": "1997-02-25T00:00:00", + "ShipVia": 3, + "Freight": 2.74, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 10, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10455, + "EmployeeID": 8, + "OrderDate": "1997-02-24T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 2, + "Freight": 180.45, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 22.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10456, + "EmployeeID": 8, + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 8.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 21, + "Discount": 0.16 + } + ] + }, + { + "OrderID": 10457, + "EmployeeID": 2, + "OrderDate": "1997-02-25T00:00:00", + "RequiredDate": "1997-03-25T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 11.57, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 36, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10458, + "EmployeeID": 7, + "OrderDate": "1997-02-26T00:00:00", + "RequiredDate": "1997-03-26T00:00:00", + "ShippedDate": "1997-03-04T00:00:00", + "ShipVia": 3, + "Freight": 147.06, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10459, + "EmployeeID": 4, + "OrderDate": "1997-02-27T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-02-28T00:00:00", + "ShipVia": 2, + "Freight": 25.09, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 16, + "Discount": 0.06 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 31000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10460, + "EmployeeID": 8, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-03T00:00:00", + "ShipVia": 1, + "Freight": 16.27, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 4, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10461, + "EmployeeID": 1, + "OrderDate": "1997-02-28T00:00:00", + "RequiredDate": "1997-03-28T00:00:00", + "ShippedDate": "1997-03-05T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 28, + "Discount": 0.25 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 60, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 34000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", + "Orders": [ + { + "OrderID": 10462, + "EmployeeID": 2, + "OrderDate": "1997-03-03T00:00:00", + "RequiredDate": "1997-03-31T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 1, + "Freight": 6.17, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 4.8, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10463, + "EmployeeID": 5, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-06T00:00:00", + "ShipVia": 3, + "Freight": 14.78, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", + "Orders": [ + { + "OrderID": 10464, + "EmployeeID": 4, + "OrderDate": "1997-03-04T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 89, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 17.6, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10465, + "EmployeeID": 1, + "OrderDate": "1997-03-05T00:00:00", + "RequiredDate": "1997-04-02T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 3, + "Freight": 145.04, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 99, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 50, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", + "Orders": [ + { + "OrderID": 10466, + "EmployeeID": 4, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-13T00:00:00", + "ShipVia": 1, + "Freight": 11.93, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 9.6, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10467, + "EmployeeID": 8, + "OrderDate": "1997-03-06T00:00:00", + "RequiredDate": "1997-04-03T00:00:00", + "ShippedDate": "1997-03-11T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10468, + "EmployeeID": 3, + "OrderDate": "1997-03-07T00:00:00", + "RequiredDate": "1997-04-04T00:00:00", + "ShippedDate": "1997-03-12T00:00:00", + "ShipVia": 3, + "Freight": 44.12, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 20.7, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 36.8, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10469, + "EmployeeID": 1, + "OrderDate": "1997-03-10T00:00:00", + "RequiredDate": "1997-04-07T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 1, + "Freight": 60.18, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 2, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10470, + "EmployeeID": 4, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-14T00:00:00", + "ShipVia": 2, + "Freight": 64.56, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 50, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 26000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 10471, + "EmployeeID": 2, + "OrderDate": "1997-03-11T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-18T00:00:00", + "ShipVia": 3, + "Freight": 45.59, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 49000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10472, + "EmployeeID": 8, + "OrderDate": "1997-03-12T00:00:00", + "RequiredDate": "1997-04-09T00:00:00", + "ShippedDate": "1997-03-19T00:00:00", + "ShipVia": 1, + "Freight": 4.2, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 3.6, + "Quantity": 80, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 41000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10473, + "EmployeeID": 1, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-03-27T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 16.37, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60471, + "ShipPostalCode": 37000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 17.2, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", + "Orders": [ + { + "OrderID": 10474, + "EmployeeID": 5, + "OrderDate": "1997-03-13T00:00:00", + "RequiredDate": "1997-04-10T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 2, + "Freight": 83.49, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 18.6, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 36.4, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10475, + "EmployeeID": 9, + "OrderDate": "1997-03-14T00:00:00", + "RequiredDate": "1997-04-11T00:00:00", + "ShippedDate": "1997-04-04T00:00:00", + "ShipVia": 1, + "Freight": 68.52, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 76, + "UnitPrice": 14.4, + "Quantity": 42, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10476, + "EmployeeID": 8, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", + "Orders": [ + { + "OrderID": 10477, + "EmployeeID": 5, + "OrderDate": "1997-03-17T00:00:00", + "RequiredDate": "1997-04-14T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 13.02, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 14.4, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 14.4, + "Quantity": 20, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10478, + "EmployeeID": 2, + "OrderDate": "1997-03-18T00:00:00", + "RequiredDate": "1997-04-01T00:00:00", + "ShippedDate": "1997-03-26T00:00:00", + "ShipVia": 3, + "Freight": 4.81, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 24.8, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10479, + "EmployeeID": 3, + "OrderDate": "1997-03-19T00:00:00", + "RequiredDate": "1997-04-16T00:00:00", + "ShippedDate": "1997-03-21T00:00:00", + "ShipVia": 3, + "Freight": 708.95, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 210.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 26.2, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 26.6, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", + "Orders": [ + { + "OrderID": 10480, + "EmployeeID": 6, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-24T00:00:00", + "ShipVia": 2, + "Freight": 1.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 7.6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10481, + "EmployeeID": 8, + "OrderDate": "1997-03-20T00:00:00", + "RequiredDate": "1997-04-17T00:00:00", + "ShippedDate": "1997-03-25T00:00:00", + "ShipVia": 2, + "Freight": 64.33, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 16, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 27.2, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAZYK", + "Company": "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", + "Orders": [ + { + "OrderID": 10482, + "EmployeeID": 1, + "OrderDate": "1997-03-21T00:00:00", + "RequiredDate": "1997-04-18T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 7.48, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10483, + "EmployeeID": 7, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-25T00:00:00", + "ShipVia": 2, + "Freight": 15.28, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 11.2, + "Quantity": 35, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 30, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 46000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 10484, + "EmployeeID": 3, + "OrderDate": "1997-03-24T00:00:00", + "RequiredDate": "1997-04-21T00:00:00", + "ShippedDate": "1997-04-01T00:00:00", + "ShipVia": 3, + "Freight": 6.88, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 31000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 8, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 14.7, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10485, + "EmployeeID": 4, + "OrderDate": "1997-03-25T00:00:00", + "RequiredDate": "1997-04-08T00:00:00", + "ShippedDate": "1997-03-31T00:00:00", + "ShipVia": 2, + "Freight": 64.45, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 15.2, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 3, + "UnitPrice": 8, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 19.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10486, + "EmployeeID": 1, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 42.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 8, + "Quantity": 16, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10487, + "EmployeeID": 2, + "OrderDate": "1997-03-26T00:00:00", + "RequiredDate": "1997-04-23T00:00:00", + "ShippedDate": "1997-03-28T00:00:00", + "ShipVia": 2, + "Freight": 71.07, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 7.3, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 24.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 5.9, + "Quantity": 24, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10488, + "EmployeeID": 8, + "OrderDate": "1997-03-27T00:00:00", + "RequiredDate": "1997-04-24T00:00:00", + "ShippedDate": "1997-04-02T00:00:00", + "ShipVia": 2, + "Freight": 4.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10489, + "EmployeeID": 6, + "OrderDate": "1997-03-28T00:00:00", + "RequiredDate": "1997-04-25T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 5.29, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 16, + "UnitPrice": 13.9, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10490, + "EmployeeID": 7, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-03T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 44, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 6.2, + "Quantity": 36, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", + "Orders": [ + { + "OrderID": 10491, + "EmployeeID": 8, + "OrderDate": "1997-03-31T00:00:00", + "RequiredDate": "1997-04-28T00:00:00", + "ShippedDate": "1997-04-08T00:00:00", + "ShipVia": 3, + "Freight": 16.96, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 44, + "UnitPrice": 15.5, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 7, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 33000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10492, + "EmployeeID": 3, + "OrderDate": "1997-04-01T00:00:00", + "RequiredDate": "1997-04-29T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 1, + "Freight": 62.89, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 16000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 11.2, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 11.2, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10493, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-10T00:00:00", + "ShipVia": 3, + "Freight": 10.64, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 65, + "UnitPrice": 16.8, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 66, + "UnitPrice": 13.6, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 28.8, + "Quantity": 10, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", + "Orders": [ + { + "OrderID": 10494, + "EmployeeID": 4, + "OrderDate": "1997-04-02T00:00:00", + "RequiredDate": "1997-04-30T00:00:00", + "ShippedDate": "1997-04-09T00:00:00", + "ShipVia": 2, + "Freight": 65.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", + "Orders": [ + { + "OrderID": 10495, + "EmployeeID": 3, + "OrderDate": "1997-04-03T00:00:00", + "RequiredDate": "1997-05-01T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "ShipVia": 3, + "Freight": 4.65, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 33000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 7.2, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 7.7, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", + "Orders": [ + { + "OrderID": 10496, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 2, + "Freight": 46.77, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10497, + "EmployeeID": 7, + "OrderDate": "1997-04-04T00:00:00", + "RequiredDate": "1997-05-02T00:00:00", + "ShippedDate": "1997-04-07T00:00:00", + "ShipVia": 1, + "Freight": 36.21, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 30.4, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 27.8, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 10.4, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10498, + "EmployeeID": 8, + "OrderDate": "1997-04-07T00:00:00", + "RequiredDate": "1997-05-05T00:00:00", + "ShippedDate": "1997-04-11T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10499, + "EmployeeID": 4, + "OrderDate": "1997-04-08T00:00:00", + "RequiredDate": "1997-05-06T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10500, + "EmployeeID": 6, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-17T00:00:00", + "ShipVia": 1, + "Freight": 42.68, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", + "Orders": [ + { + "OrderID": 10501, + "EmployeeID": 9, + "OrderDate": "1997-04-09T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 3, + "Freight": 8.85, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", + "Orders": [ + { + "OrderID": 10502, + "EmployeeID": 2, + "OrderDate": "1997-04-10T00:00:00", + "RequiredDate": "1997-05-08T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 69.32, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10503, + "EmployeeID": 6, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-16T00:00:00", + "ShipVia": 2, + "Freight": 16.74, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10504, + "EmployeeID": 4, + "OrderDate": "1997-04-11T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-04-18T00:00:00", + "ShipVia": 3, + "Freight": 59.13, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 47000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10505, + "EmployeeID": 3, + "OrderDate": "1997-04-14T00:00:00", + "RequiredDate": "1997-05-12T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 7.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 11000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10506, + "EmployeeID": 9, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 21.19, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 14, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Orders": [ + { + "OrderID": 10507, + "EmployeeID": 7, + "OrderDate": "1997-04-15T00:00:00", + "RequiredDate": "1997-05-13T00:00:00", + "ShippedDate": "1997-04-22T00:00:00", + "ShipVia": 1, + "Freight": 47.45, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 15, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10508, + "EmployeeID": 1, + "OrderDate": "1997-04-16T00:00:00", + "RequiredDate": "1997-05-14T00:00:00", + "ShippedDate": "1997-05-13T00:00:00", + "ShipVia": 2, + "Freight": 4.99, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", + "Orders": [ + { + "OrderID": 10509, + "EmployeeID": 4, + "OrderDate": "1997-04-17T00:00:00", + "RequiredDate": "1997-05-15T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 1, + "Freight": 0.15, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10510, + "EmployeeID": 6, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 3, + "Freight": 367.63, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 36, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10511, + "EmployeeID": 4, + "OrderDate": "1997-04-18T00:00:00", + "RequiredDate": "1997-05-16T00:00:00", + "ShippedDate": "1997-04-21T00:00:00", + "ShipVia": 3, + "Freight": 350.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 50, + "Discount": 0.16 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Orders": [ + { + "OrderID": 10512, + "EmployeeID": 7, + "OrderDate": "1997-04-21T00:00:00", + "RequiredDate": "1997-05-19T00:00:00", + "ShippedDate": "1997-04-24T00:00:00", + "ShipVia": 2, + "Freight": 3.53, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0.16 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 12, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10513, + "EmployeeID": 7, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-06-03T00:00:00", + "ShippedDate": "1997-04-28T00:00:00", + "ShipVia": 1, + "Freight": 105.65, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10514, + "EmployeeID": 3, + "OrderDate": "1997-04-22T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 2, + "Freight": 789.95, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 39, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 39, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10515, + "EmployeeID": 2, + "OrderDate": "1997-04-23T00:00:00", + "RequiredDate": "1997-05-07T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 1, + "Freight": 204.47, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0.16 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 84, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10516, + "EmployeeID": 2, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 62.78, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 80, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 17000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", + "Orders": [ + { + "OrderID": 10517, + "EmployeeID": 3, + "OrderDate": "1997-04-24T00:00:00", + "RequiredDate": "1997-05-22T00:00:00", + "ShippedDate": "1997-04-29T00:00:00", + "ShipVia": 3, + "Freight": 32.07, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 16000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10518, + "EmployeeID": 4, + "OrderDate": "1997-04-25T00:00:00", + "RequiredDate": "1997-05-09T00:00:00", + "ShippedDate": "1997-05-05T00:00:00", + "ShipVia": 2, + "Freight": 218.15, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Orders": [ + { + "OrderID": 10519, + "EmployeeID": 6, + "OrderDate": "1997-04-28T00:00:00", + "RequiredDate": "1997-05-26T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 3, + "Freight": 91.76, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", + "Orders": [ + { + "OrderID": 10520, + "EmployeeID": 7, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-01T00:00:00", + "ShipVia": 1, + "Freight": 13.37, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", + "Orders": [ + { + "OrderID": 10521, + "EmployeeID": 8, + "OrderDate": "1997-04-29T00:00:00", + "RequiredDate": "1997-05-27T00:00:00", + "ShippedDate": "1997-05-02T00:00:00", + "ShipVia": 2, + "Freight": 17.22, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10522, + "EmployeeID": 4, + "OrderDate": "1997-04-30T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-06T00:00:00", + "ShipVia": 1, + "Freight": 45.33, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 12000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10523, + "EmployeeID": 7, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 2, + "Freight": 77.63, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 37000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10524, + "EmployeeID": 1, + "OrderDate": "1997-05-01T00:00:00", + "RequiredDate": "1997-05-29T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 2, + "Freight": 244.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10525, + "EmployeeID": 1, + "OrderDate": "1997-05-02T00:00:00", + "RequiredDate": "1997-05-30T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 2, + "Freight": 11.06, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 15, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10526, + "EmployeeID": 4, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-15T00:00:00", + "ShipVia": 2, + "Freight": 58.59, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10527, + "EmployeeID": 7, + "OrderDate": "1997-05-05T00:00:00", + "RequiredDate": "1997-06-02T00:00:00", + "ShippedDate": "1997-05-07T00:00:00", + "ShipVia": 1, + "Freight": 41.9, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 10528, + "EmployeeID": 6, + "OrderDate": "1997-05-06T00:00:00", + "RequiredDate": "1997-05-20T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 3.35, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.2 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 45000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", + "Orders": [ + { + "OrderID": 10529, + "EmployeeID": 5, + "OrderDate": "1997-05-07T00:00:00", + "RequiredDate": "1997-06-04T00:00:00", + "ShippedDate": "1997-05-09T00:00:00", + "ShipVia": 2, + "Freight": 66.69, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10530, + "EmployeeID": 3, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 2, + "Freight": 339.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", + "Orders": [ + { + "OrderID": 10531, + "EmployeeID": 7, + "OrderDate": "1997-05-08T00:00:00", + "RequiredDate": "1997-06-05T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 8.12, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 33000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", + "Orders": [ + { + "OrderID": 10532, + "EmployeeID": 7, + "OrderDate": "1997-05-09T00:00:00", + "RequiredDate": "1997-06-06T00:00:00", + "ShippedDate": "1997-05-12T00:00:00", + "ShipVia": 3, + "Freight": 74.46, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 10000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10533, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-22T00:00:00", + "ShipVia": 1, + "Freight": 188.04, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 24, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10534, + "EmployeeID": 8, + "OrderDate": "1997-05-12T00:00:00", + "RequiredDate": "1997-06-09T00:00:00", + "ShippedDate": "1997-05-14T00:00:00", + "ShipVia": 2, + "Freight": 27.94, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Orders": [ + { + "OrderID": 10535, + "EmployeeID": 4, + "OrderDate": "1997-05-13T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-21T00:00:00", + "ShipVia": 1, + "Freight": 15.64, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 5, + "Discount": 0.1 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10536, + "EmployeeID": 3, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-06-11T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 58.88, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 10537, + "EmployeeID": 1, + "OrderDate": "1997-05-14T00:00:00", + "RequiredDate": "1997-05-28T00:00:00", + "ShippedDate": "1997-05-19T00:00:00", + "ShipVia": 1, + "Freight": 78.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 37000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 10538, + "EmployeeID": 9, + "OrderDate": "1997-05-15T00:00:00", + "RequiredDate": "1997-06-12T00:00:00", + "ShippedDate": "1997-05-16T00:00:00", + "ShipVia": 3, + "Freight": 4.87, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 45000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 1, + "Discount": 0 + } + ] + }, + { + "OrderID": 10539, + "EmployeeID": 6, + "OrderDate": "1997-05-16T00:00:00", + "RequiredDate": "1997-06-13T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "ShipVia": 3, + "Freight": 12.36, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 14000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10540, + "EmployeeID": 3, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 3, + "Freight": 1007.64, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10541, + "EmployeeID": 2, + "OrderDate": "1997-05-19T00:00:00", + "RequiredDate": "1997-06-16T00:00:00", + "ShippedDate": "1997-05-29T00:00:00", + "ShipVia": 1, + "Freight": 68.65, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.1 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10542, + "EmployeeID": 1, + "OrderDate": "1997-05-20T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-05-26T00:00:00", + "ShipVia": 3, + "Freight": 10.95, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 24, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10543, + "EmployeeID": 8, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-23T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "LONEP", + "Company": "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", + "Orders": [ + { + "OrderID": 10544, + "EmployeeID": 4, + "OrderDate": "1997-05-21T00:00:00", + "RequiredDate": "1997-06-18T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 24.91, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 7, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAZYK", + "Company": "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", + "Orders": [ + { + "OrderID": 10545, + "EmployeeID": 8, + "OrderDate": "1997-05-22T00:00:00", + "RequiredDate": "1997-06-19T00:00:00", + "ShippedDate": "1997-06-26T00:00:00", + "ShipVia": 2, + "Freight": 11.92, + "ShipName": "Lazy K Kountry Store", + "ShipAddress": "12 Orchestra Terrace", + "ShipCity": "Walla Walla", + "ShipRegion": "WA", + "ShipPostalCode": 99362, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10546, + "EmployeeID": 1, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-05-27T00:00:00", + "ShipVia": 3, + "Freight": 194.72, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10547, + "EmployeeID": 3, + "OrderDate": "1997-05-23T00:00:00", + "RequiredDate": "1997-06-20T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 178.43, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 48000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TOMSP", + "Company": "Toms Spezialitäten", + "ContactName": "Karin Josephs", + "ContactTitle": "Marketing Manager", + "Address": "Luisenstr. 48", + "City": "Münster", + "PostalCode": 44087, + "Country": "Germany", + "Phone": "0251-031259", + "Fax": "0251-035695", + "Orders": [ + { + "OrderID": 10548, + "EmployeeID": 3, + "OrderDate": "1997-05-26T00:00:00", + "RequiredDate": "1997-06-23T00:00:00", + "ShippedDate": "1997-06-02T00:00:00", + "ShipVia": 2, + "Freight": 1.43, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10549, + "EmployeeID": 5, + "OrderDate": "1997-05-27T00:00:00", + "RequiredDate": "1997-06-10T00:00:00", + "ShippedDate": "1997-05-30T00:00:00", + "ShipVia": 1, + "Freight": 171.24, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 48, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 10550, + "EmployeeID": 7, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-06-25T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 4.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", + "Orders": [ + { + "OrderID": 10551, + "EmployeeID": 4, + "OrderDate": "1997-05-28T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 3, + "Freight": 72.95, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10552, + "EmployeeID": 2, + "OrderDate": "1997-05-29T00:00:00", + "RequiredDate": "1997-06-26T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10553, + "EmployeeID": 2, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-03T00:00:00", + "ShipVia": 2, + "Freight": 149.49, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10554, + "EmployeeID": 4, + "OrderDate": "1997-05-30T00:00:00", + "RequiredDate": "1997-06-27T00:00:00", + "ShippedDate": "1997-06-05T00:00:00", + "ShipVia": 3, + "Freight": 120.97, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10555, + "EmployeeID": 6, + "OrderDate": "1997-06-02T00:00:00", + "RequiredDate": "1997-06-30T00:00:00", + "ShippedDate": "1997-06-04T00:00:00", + "ShipVia": 3, + "Freight": 252.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 18, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 40, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", + "Orders": [ + { + "OrderID": 10556, + "EmployeeID": 2, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 9.8, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10557, + "EmployeeID": 9, + "OrderDate": "1997-06-03T00:00:00", + "RequiredDate": "1997-06-17T00:00:00", + "ShippedDate": "1997-06-06T00:00:00", + "ShipVia": 2, + "Freight": 96.72, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 10000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10558, + "EmployeeID": 1, + "OrderDate": "1997-06-04T00:00:00", + "RequiredDate": "1997-07-02T00:00:00", + "ShippedDate": "1997-06-10T00:00:00", + "ShipVia": 2, + "Freight": 72.97, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 27000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10559, + "EmployeeID": 6, + "OrderDate": "1997-06-05T00:00:00", + "RequiredDate": "1997-07-03T00:00:00", + "ShippedDate": "1997-06-13T00:00:00", + "ShipVia": 1, + "Freight": 8.05, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 18, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10560, + "EmployeeID": 8, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 1, + "Freight": 36.65, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 20000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10561, + "EmployeeID": 2, + "OrderDate": "1997-06-06T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-09T00:00:00", + "ShipVia": 2, + "Freight": 242.21, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 18000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10562, + "EmployeeID": 1, + "OrderDate": "1997-06-09T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-12T00:00:00", + "ShipVia": 1, + "Freight": 22.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10563, + "EmployeeID": 2, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-06-24T00:00:00", + "ShipVia": 2, + "Freight": 60.43, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 70, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10564, + "EmployeeID": 4, + "OrderDate": "1997-06-10T00:00:00", + "RequiredDate": "1997-07-08T00:00:00", + "ShippedDate": "1997-06-16T00:00:00", + "ShipVia": 3, + "Freight": 13.75, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 15000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10565, + "EmployeeID": 8, + "OrderDate": "1997-06-11T00:00:00", + "RequiredDate": "1997-07-09T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 2, + "Freight": 7.15, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 24000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 18, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10566, + "EmployeeID": 9, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-18T00:00:00", + "ShipVia": 1, + "Freight": 88.4, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 18, + "Discount": 0.16 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10567, + "EmployeeID": 1, + "OrderDate": "1997-06-12T00:00:00", + "RequiredDate": "1997-07-10T00:00:00", + "ShippedDate": "1997-06-17T00:00:00", + "ShipVia": 1, + "Freight": 33.97, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", + "Orders": [ + { + "OrderID": 10568, + "EmployeeID": 3, + "OrderDate": "1997-06-13T00:00:00", + "RequiredDate": "1997-07-11T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 3, + "Freight": 6.54, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10569, + "EmployeeID": 5, + "OrderDate": "1997-06-16T00:00:00", + "RequiredDate": "1997-07-14T00:00:00", + "ShippedDate": "1997-07-11T00:00:00", + "ShipVia": 1, + "Freight": 58.98, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 34000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10570, + "EmployeeID": 3, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-15T00:00:00", + "ShippedDate": "1997-06-19T00:00:00", + "ShipVia": 3, + "Freight": 188.99, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10571, + "EmployeeID": 8, + "OrderDate": "1997-06-17T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 3, + "Freight": 26.06, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 11, + "Discount": 0.16 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 43000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10572, + "EmployeeID": 3, + "OrderDate": "1997-06-18T00:00:00", + "RequiredDate": "1997-07-16T00:00:00", + "ShippedDate": "1997-06-25T00:00:00", + "ShipVia": 2, + "Freight": 116.43, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 25000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 15, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Orders": [ + { + "OrderID": 10573, + "EmployeeID": 7, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-20T00:00:00", + "ShipVia": 3, + "Freight": 84.84, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TRAIH", + "Company": "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", + "Orders": [ + { + "OrderID": 10574, + "EmployeeID": 4, + "OrderDate": "1997-06-19T00:00:00", + "RequiredDate": "1997-07-17T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 2, + "Freight": 37.6, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", + "Orders": [ + { + "OrderID": 10575, + "EmployeeID": 5, + "OrderDate": "1997-06-20T00:00:00", + "RequiredDate": "1997-07-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 1, + "Freight": 127.34, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10576, + "EmployeeID": 3, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-07-07T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 3, + "Freight": 18.56, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TRAIH", + "Company": "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", + "Orders": [ + { + "OrderID": 10577, + "EmployeeID": 9, + "OrderDate": "1997-06-23T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-06-30T00:00:00", + "ShipVia": 2, + "Freight": 25.41, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 44000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 10578, + "EmployeeID": 4, + "OrderDate": "1997-06-24T00:00:00", + "RequiredDate": "1997-07-22T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 3, + "Freight": 29.6, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 44000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LETSS", + "Company": "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", + "Orders": [ + { + "OrderID": 10579, + "EmployeeID": 1, + "OrderDate": "1997-06-25T00:00:00", + "RequiredDate": "1997-07-23T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10580, + "EmployeeID": 4, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-01T00:00:00", + "ShipVia": 3, + "Freight": 75.89, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 30, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Orders": [ + { + "OrderID": 10581, + "EmployeeID": 3, + "OrderDate": "1997-06-26T00:00:00", + "RequiredDate": "1997-07-24T00:00:00", + "ShippedDate": "1997-07-02T00:00:00", + "ShipVia": 1, + "Freight": 3.01, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", + "Orders": [ + { + "OrderID": 10582, + "EmployeeID": 3, + "OrderDate": "1997-06-27T00:00:00", + "RequiredDate": "1997-07-25T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 27.71, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10583, + "EmployeeID": 2, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 2, + "Freight": 7.28, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10584, + "EmployeeID": 4, + "OrderDate": "1997-06-30T00:00:00", + "RequiredDate": "1997-07-28T00:00:00", + "ShippedDate": "1997-07-04T00:00:00", + "ShipVia": 1, + "Freight": 59.14, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10585, + "EmployeeID": 7, + "OrderDate": "1997-07-01T00:00:00", + "RequiredDate": "1997-07-29T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 1, + "Freight": 13.41, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10586, + "EmployeeID": 9, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 0.48, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10587, + "EmployeeID": 1, + "OrderDate": "1997-07-02T00:00:00", + "RequiredDate": "1997-07-30T00:00:00", + "ShippedDate": "1997-07-09T00:00:00", + "ShipVia": 1, + "Freight": 62.52, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10588, + "EmployeeID": 2, + "OrderDate": "1997-07-03T00:00:00", + "RequiredDate": "1997-07-31T00:00:00", + "ShippedDate": "1997-07-10T00:00:00", + "ShipVia": 3, + "Freight": 194.67, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 100, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 10589, + "EmployeeID": 8, + "OrderDate": "1997-07-04T00:00:00", + "RequiredDate": "1997-08-01T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 2, + "Freight": 4.42, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 22000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10590, + "EmployeeID": 4, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-08-04T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 3, + "Freight": 44.77, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 47000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 60, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10591, + "EmployeeID": 1, + "OrderDate": "1997-07-07T00:00:00", + "RequiredDate": "1997-07-21T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 55.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10592, + "EmployeeID": 3, + "OrderDate": "1997-07-08T00:00:00", + "RequiredDate": "1997-08-05T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 1, + "Freight": 32.1, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10593, + "EmployeeID": 7, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-08-13T00:00:00", + "ShipVia": 2, + "Freight": 174.2, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10594, + "EmployeeID": 3, + "OrderDate": "1997-07-09T00:00:00", + "RequiredDate": "1997-08-06T00:00:00", + "ShippedDate": "1997-07-16T00:00:00", + "ShipVia": 2, + "Freight": 5.24, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10595, + "EmployeeID": 2, + "OrderDate": "1997-07-10T00:00:00", + "RequiredDate": "1997-08-07T00:00:00", + "ShippedDate": "1997-07-14T00:00:00", + "ShipVia": 1, + "Freight": 96.78, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 120, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 65, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10596, + "EmployeeID": 8, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 1, + "Freight": 16.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10597, + "EmployeeID": 7, + "OrderDate": "1997-07-11T00:00:00", + "RequiredDate": "1997-08-08T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 35.12, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10598, + "EmployeeID": 1, + "OrderDate": "1997-07-14T00:00:00", + "RequiredDate": "1997-08-11T00:00:00", + "ShippedDate": "1997-07-18T00:00:00", + "ShipVia": 3, + "Freight": 44.42, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 45000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 10599, + "EmployeeID": 6, + "OrderDate": "1997-07-15T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "ShipVia": 3, + "Freight": 29.98, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGC", + "Company": "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", + "Orders": [ + { + "OrderID": 10600, + "EmployeeID": 4, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-13T00:00:00", + "ShippedDate": "1997-07-21T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10601, + "EmployeeID": 7, + "OrderDate": "1997-07-16T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10602, + "EmployeeID": 8, + "OrderDate": "1997-07-17T00:00:00", + "RequiredDate": "1997-08-14T00:00:00", + "ShippedDate": "1997-07-22T00:00:00", + "ShipVia": 2, + "Freight": 2.92, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 5, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10603, + "EmployeeID": 8, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 2, + "Freight": 48.77, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 48, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 25, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", + "Orders": [ + { + "OrderID": 10604, + "EmployeeID": 1, + "OrderDate": "1997-07-18T00:00:00", + "RequiredDate": "1997-08-15T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 1, + "Freight": 7.46, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 6, + "Discount": 0.1 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 12000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10605, + "EmployeeID": 1, + "OrderDate": "1997-07-21T00:00:00", + "RequiredDate": "1997-08-18T00:00:00", + "ShippedDate": "1997-07-29T00:00:00", + "ShipVia": 2, + "Freight": 379.13, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 43000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", + "Orders": [ + { + "OrderID": 10606, + "EmployeeID": 4, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-31T00:00:00", + "ShipVia": 3, + "Freight": 79.4, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10607, + "EmployeeID": 5, + "OrderDate": "1997-07-22T00:00:00", + "RequiredDate": "1997-08-19T00:00:00", + "ShippedDate": "1997-07-25T00:00:00", + "ShipVia": 1, + "Freight": 200.24, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TOMSP", + "Company": "Toms Spezialitäten", + "ContactName": "Karin Josephs", + "ContactTitle": "Marketing Manager", + "Address": "Luisenstr. 48", + "City": "Münster", + "PostalCode": 44087, + "Country": "Germany", + "Phone": "0251-031259", + "Fax": "0251-035695", + "Orders": [ + { + "OrderID": 10608, + "EmployeeID": 4, + "OrderDate": "1997-07-23T00:00:00", + "RequiredDate": "1997-08-20T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 27.79, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", + "Orders": [ + { + "OrderID": 10609, + "EmployeeID": 7, + "OrderDate": "1997-07-24T00:00:00", + "RequiredDate": "1997-08-21T00:00:00", + "ShippedDate": "1997-07-30T00:00:00", + "ShipVia": 2, + "Freight": 1.85, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10610, + "EmployeeID": 8, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 1, + "Freight": 26.78, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10611, + "EmployeeID": 6, + "OrderDate": "1997-07-25T00:00:00", + "RequiredDate": "1997-08-22T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 80.65, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10612, + "EmployeeID": 1, + "OrderDate": "1997-07-28T00:00:00", + "RequiredDate": "1997-08-25T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 2, + "Freight": 544.08, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 55, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10613, + "EmployeeID": 4, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", + "Orders": [ + { + "OrderID": 10614, + "EmployeeID": 8, + "OrderDate": "1997-07-29T00:00:00", + "RequiredDate": "1997-08-26T00:00:00", + "ShippedDate": "1997-08-01T00:00:00", + "ShipVia": 3, + "Freight": 1.93, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", + "Orders": [ + { + "OrderID": 10615, + "EmployeeID": 2, + "OrderDate": "1997-07-30T00:00:00", + "RequiredDate": "1997-08-27T00:00:00", + "ShippedDate": "1997-08-06T00:00:00", + "ShipVia": 3, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 10616, + "EmployeeID": 1, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-05T00:00:00", + "ShipVia": 2, + "Freight": 116.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0.06 + } + ] + }, + { + "OrderID": 10617, + "EmployeeID": 4, + "OrderDate": "1997-07-31T00:00:00", + "RequiredDate": "1997-08-28T00:00:00", + "ShippedDate": "1997-08-04T00:00:00", + "ShipVia": 2, + "Freight": 18.53, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 45000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10618, + "EmployeeID": 1, + "OrderDate": "1997-08-01T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-08T00:00:00", + "ShipVia": 1, + "Freight": 154.68, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10619, + "EmployeeID": 3, + "OrderDate": "1997-08-04T00:00:00", + "RequiredDate": "1997-09-01T00:00:00", + "ShippedDate": "1997-08-07T00:00:00", + "ShipVia": 3, + "Freight": 91.05, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 20000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 48000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", + "Orders": [ + { + "OrderID": 10620, + "EmployeeID": 2, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 3, + "Freight": 0.94, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 15000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 24000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10621, + "EmployeeID": 4, + "OrderDate": "1997-08-05T00:00:00", + "RequiredDate": "1997-09-02T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 2, + "Freight": 23.73, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 90304, + "ShipPostalCode": 28000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10622, + "EmployeeID": 4, + "OrderDate": "1997-08-06T00:00:00", + "RequiredDate": "1997-09-03T00:00:00", + "ShippedDate": "1997-08-11T00:00:00", + "ShipVia": 3, + "Freight": 50.97, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10623, + "EmployeeID": 8, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-12T00:00:00", + "ShipVia": 2, + "Freight": 97.18, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "THECR", + "Company": "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", + "Orders": [ + { + "OrderID": 10624, + "EmployeeID": 4, + "OrderDate": "1997-08-07T00:00:00", + "RequiredDate": "1997-09-04T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 94.8, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", + "Orders": [ + { + "OrderID": 10625, + "EmployeeID": 3, + "OrderDate": "1997-08-08T00:00:00", + "RequiredDate": "1997-09-05T00:00:00", + "ShippedDate": "1997-08-14T00:00:00", + "ShipVia": 1, + "Freight": 43.9, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 47000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10626, + "EmployeeID": 1, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-08T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 2, + "Freight": 138.69, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 39000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10627, + "EmployeeID": 8, + "OrderDate": "1997-08-11T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 107.46, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10628, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 30.36, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 10629, + "EmployeeID": 4, + "OrderDate": "1997-08-12T00:00:00", + "RequiredDate": "1997-09-09T00:00:00", + "ShippedDate": "1997-08-20T00:00:00", + "ShipVia": 3, + "Freight": 85.46, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10630, + "EmployeeID": 1, + "OrderDate": "1997-08-13T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 2, + "Freight": 32.35, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10631, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-15T00:00:00", + "ShipVia": 1, + "Freight": 0.87, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 8, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10632, + "EmployeeID": 8, + "OrderDate": "1997-08-14T00:00:00", + "RequiredDate": "1997-09-11T00:00:00", + "ShippedDate": "1997-08-19T00:00:00", + "ShipVia": 1, + "Freight": 41.38, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10633, + "EmployeeID": 7, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-18T00:00:00", + "ShipVia": 3, + "Freight": 477.9, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 13, + "Discount": 0.16 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 80, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", + "Orders": [ + { + "OrderID": 10634, + "EmployeeID": 4, + "OrderDate": "1997-08-15T00:00:00", + "RequiredDate": "1997-09-12T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 487.38, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10635, + "EmployeeID": 8, + "OrderDate": "1997-08-18T00:00:00", + "RequiredDate": "1997-09-15T00:00:00", + "ShippedDate": "1997-08-21T00:00:00", + "ShipVia": 3, + "Freight": 47.46, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10636, + "EmployeeID": 4, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 1.15, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10637, + "EmployeeID": 6, + "OrderDate": "1997-08-19T00:00:00", + "RequiredDate": "1997-09-16T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "ShipVia": 1, + "Freight": 201.29, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10638, + "EmployeeID": 3, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 1, + "Freight": 158.44, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", + "Orders": [ + { + "OrderID": 10639, + "EmployeeID": 7, + "OrderDate": "1997-08-20T00:00:00", + "RequiredDate": "1997-09-17T00:00:00", + "ShippedDate": "1997-08-27T00:00:00", + "ShipVia": 3, + "Freight": 38.64, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10640, + "EmployeeID": 4, + "OrderDate": "1997-08-21T00:00:00", + "RequiredDate": "1997-09-18T00:00:00", + "ShippedDate": "1997-08-28T00:00:00", + "ShipVia": 1, + "Freight": 23.55, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10641, + "EmployeeID": 4, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-08-26T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", + "Orders": [ + { + "OrderID": 10642, + "EmployeeID": 7, + "OrderDate": "1997-08-22T00:00:00", + "RequiredDate": "1997-09-19T00:00:00", + "ShippedDate": "1997-09-05T00:00:00", + "ShipVia": 3, + "Freight": 41.89, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", + "Orders": [ + { + "OrderID": 10643, + "EmployeeID": 6, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 29.46, + "ShipName": "Alfreds Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 2, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10644, + "EmployeeID": 3, + "OrderDate": "1997-08-25T00:00:00", + "RequiredDate": "1997-09-22T00:00:00", + "ShippedDate": "1997-09-01T00:00:00", + "ShipVia": 2, + "Freight": 0.14, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10645, + "EmployeeID": 4, + "OrderDate": "1997-08-26T00:00:00", + "RequiredDate": "1997-09-23T00:00:00", + "ShippedDate": "1997-09-02T00:00:00", + "ShipVia": 1, + "Freight": 12.41, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10646, + "EmployeeID": 9, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 142.33, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.25 + }, + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.25 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 35, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10647, + "EmployeeID": 4, + "OrderDate": "1997-08-27T00:00:00", + "RequiredDate": "1997-09-10T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 2, + "Freight": 45.54, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10648, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-09T00:00:00", + "ShipVia": 2, + "Freight": 14.25, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 43000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", + "Orders": [ + { + "OrderID": 10649, + "EmployeeID": 5, + "OrderDate": "1997-08-28T00:00:00", + "RequiredDate": "1997-09-25T00:00:00", + "ShippedDate": "1997-08-29T00:00:00", + "ShipVia": 3, + "Freight": 6.2, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 21000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Orders": [ + { + "OrderID": 10650, + "EmployeeID": 5, + "OrderDate": "1997-08-29T00:00:00", + "RequiredDate": "1997-09-26T00:00:00", + "ShippedDate": "1997-09-03T00:00:00", + "ShipVia": 3, + "Freight": 176.81, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10651, + "EmployeeID": 8, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 20.6, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 10652, + "EmployeeID": 4, + "OrderDate": "1997-09-01T00:00:00", + "RequiredDate": "1997-09-29T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 2, + "Freight": 7.14, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10653, + "EmployeeID": 1, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 93.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 20, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 28000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10654, + "EmployeeID": 5, + "OrderDate": "1997-09-02T00:00:00", + "RequiredDate": "1997-09-30T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 1, + "Freight": 55.26, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 36000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10655, + "EmployeeID": 1, + "OrderDate": "1997-09-03T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-11T00:00:00", + "ShipVia": 2, + "Freight": 4.41, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 10656, + "EmployeeID": 6, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", + "ShipVia": 1, + "Freight": 57.15, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 3, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 28, + "Discount": 0.1 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 6, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10657, + "EmployeeID": 2, + "OrderDate": "1997-09-04T00:00:00", + "RequiredDate": "1997-10-02T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 2, + "Freight": 352.69, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 15, + "UnitPrice": 15.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10658, + "EmployeeID": 4, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-08T00:00:00", + "ShipVia": 1, + "Freight": 364.15, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 55, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 70, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10659, + "EmployeeID": 7, + "OrderDate": "1997-09-05T00:00:00", + "RequiredDate": "1997-10-03T00:00:00", + "ShippedDate": "1997-09-10T00:00:00", + "ShipVia": 2, + "Freight": 105.81, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "HUNGC", + "Company": "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", + "Orders": [ + { + "OrderID": 10660, + "EmployeeID": 8, + "OrderDate": "1997-09-08T00:00:00", + "RequiredDate": "1997-10-06T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10661, + "EmployeeID": 7, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-15T00:00:00", + "ShipVia": 3, + "Freight": 17.55, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 49, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "LONEP", + "Company": "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", + "Orders": [ + { + "OrderID": 10662, + "EmployeeID": 3, + "OrderDate": "1997-09-09T00:00:00", + "RequiredDate": "1997-10-07T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 2, + "Freight": 1.28, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10663, + "EmployeeID": 2, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-09-24T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 113.15, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", + "Orders": [ + { + "OrderID": 10664, + "EmployeeID": 1, + "OrderDate": "1997-09-10T00:00:00", + "RequiredDate": "1997-10-08T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 3, + "Freight": 1.27, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "LONEP", + "Company": "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", + "Orders": [ + { + "OrderID": 10665, + "EmployeeID": 1, + "OrderDate": "1997-09-11T00:00:00", + "RequiredDate": "1997-10-09T00:00:00", + "ShippedDate": "1997-09-17T00:00:00", + "ShipVia": 2, + "Freight": 26.31, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 10666, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 2, + "Freight": 232.42, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 36, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10667, + "EmployeeID": 7, + "OrderDate": "1997-09-12T00:00:00", + "RequiredDate": "1997-10-10T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 78.09, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 14, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 10668, + "EmployeeID": 1, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 47.22, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", + "Orders": [ + { + "OrderID": 10669, + "EmployeeID": 2, + "OrderDate": "1997-09-15T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-09-22T00:00:00", + "ShipVia": 1, + "Freight": 24.39, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10670, + "EmployeeID": 4, + "OrderDate": "1997-09-16T00:00:00", + "RequiredDate": "1997-10-14T00:00:00", + "ShippedDate": "1997-09-18T00:00:00", + "ShipVia": 1, + "Freight": 203.48, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 32, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10671, + "EmployeeID": 1, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-09-24T00:00:00", + "ShipVia": 1, + "Freight": 30.34, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10672, + "EmployeeID": 9, + "OrderDate": "1997-09-17T00:00:00", + "RequiredDate": "1997-10-01T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 2, + "Freight": 95.75, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 16000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", + "Orders": [ + { + "OrderID": 10673, + "EmployeeID": 2, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-19T00:00:00", + "ShipVia": 1, + "Freight": 22.76, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 30000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10674, + "EmployeeID": 4, + "OrderDate": "1997-09-18T00:00:00", + "RequiredDate": "1997-10-16T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 2, + "Freight": 0.9, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 60688, + "ShipPostalCode": 25000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10675, + "EmployeeID": 5, + "OrderDate": "1997-09-19T00:00:00", + "RequiredDate": "1997-10-17T00:00:00", + "ShippedDate": "1997-09-23T00:00:00", + "ShipVia": 2, + "Freight": 31.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10676, + "EmployeeID": 2, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-29T00:00:00", + "ShipVia": 2, + "Freight": 2.01, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Orders": [ + { + "OrderID": 10677, + "EmployeeID": 1, + "OrderDate": "1997-09-22T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 3, + "Freight": 4.03, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 8, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10678, + "EmployeeID": 7, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 3, + "Freight": 388.98, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 100, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 120, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10679, + "EmployeeID": 8, + "OrderDate": "1997-09-23T00:00:00", + "RequiredDate": "1997-10-21T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 27.94, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10680, + "EmployeeID": 1, + "OrderDate": "1997-09-24T00:00:00", + "RequiredDate": "1997-10-22T00:00:00", + "ShippedDate": "1997-09-26T00:00:00", + "ShipVia": 1, + "Freight": 26.61, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 10681, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 3, + "Freight": 76.13, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 28, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Orders": [ + { + "OrderID": 10682, + "EmployeeID": 3, + "OrderDate": "1997-09-25T00:00:00", + "RequiredDate": "1997-10-23T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 2, + "Freight": 36.13, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", + "Orders": [ + { + "OrderID": 10683, + "EmployeeID": 2, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-10-01T00:00:00", + "ShipVia": 1, + "Freight": 4.4, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10684, + "EmployeeID": 3, + "OrderDate": "1997-09-26T00:00:00", + "RequiredDate": "1997-10-24T00:00:00", + "ShippedDate": "1997-09-30T00:00:00", + "ShipVia": 1, + "Freight": 145.63, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 10685, + "EmployeeID": 4, + "OrderDate": "1997-09-29T00:00:00", + "RequiredDate": "1997-10-13T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 2, + "Freight": 33.75, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10686, + "EmployeeID": 2, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-08T00:00:00", + "ShipVia": 1, + "Freight": 96.5, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10687, + "EmployeeID": 9, + "OrderDate": "1997-09-30T00:00:00", + "RequiredDate": "1997-10-28T00:00:00", + "ShippedDate": "1997-10-30T00:00:00", + "ShipVia": 2, + "Freight": 296.43, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10688, + "EmployeeID": 4, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-15T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 299.09, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 21000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10689, + "EmployeeID": 1, + "OrderDate": "1997-10-01T00:00:00", + "RequiredDate": "1997-10-29T00:00:00", + "ShippedDate": "1997-10-07T00:00:00", + "ShipVia": 2, + "Freight": 13.42, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 24000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10690, + "EmployeeID": 1, + "OrderDate": "1997-10-02T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-03T00:00:00", + "ShipVia": 1, + "Freight": 15.8, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10691, + "EmployeeID": 2, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-10-22T00:00:00", + "ShipVia": 2, + "Freight": 810.05, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 48, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", + "Orders": [ + { + "OrderID": 10692, + "EmployeeID": 4, + "OrderDate": "1997-10-03T00:00:00", + "RequiredDate": "1997-10-31T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 2, + "Freight": 61.02, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10693, + "EmployeeID": 3, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-10-20T00:00:00", + "ShippedDate": "1997-10-10T00:00:00", + "ShipVia": 3, + "Freight": 139.34, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10694, + "EmployeeID": 8, + "OrderDate": "1997-10-06T00:00:00", + "RequiredDate": "1997-11-03T00:00:00", + "ShippedDate": "1997-10-09T00:00:00", + "ShipVia": 3, + "Freight": 398.36, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 90, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", + "Orders": [ + { + "OrderID": 10695, + "EmployeeID": 7, + "OrderDate": "1997-10-07T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 16.72, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10696, + "EmployeeID": 8, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 3, + "Freight": 102.55, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10697, + "EmployeeID": 3, + "OrderDate": "1997-10-08T00:00:00", + "RequiredDate": "1997-11-05T00:00:00", + "ShippedDate": "1997-10-14T00:00:00", + "ShipVia": 1, + "Freight": 45.52, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0.25 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 9, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10698, + "EmployeeID": 4, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-17T00:00:00", + "ShipVia": 1, + "Freight": 272.47, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 65, + "Discount": 0.06 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 8, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", + "Orders": [ + { + "OrderID": 10699, + "EmployeeID": 3, + "OrderDate": "1997-10-09T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-13T00:00:00", + "ShipVia": 3, + "Freight": 0.58, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10700, + "EmployeeID": 3, + "OrderDate": "1997-10-10T00:00:00", + "RequiredDate": "1997-11-07T00:00:00", + "ShippedDate": "1997-10-16T00:00:00", + "ShipVia": 1, + "Freight": 65.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10701, + "EmployeeID": 6, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-10-27T00:00:00", + "ShippedDate": "1997-10-15T00:00:00", + "ShipVia": 3, + "Freight": 220.31, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", + "Orders": [ + { + "OrderID": 10702, + "EmployeeID": 4, + "OrderDate": "1997-10-13T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 1, + "Freight": 23.94, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 47000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10703, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-10-20T00:00:00", + "ShipVia": 2, + "Freight": 152.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 22000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10704, + "EmployeeID": 6, + "OrderDate": "1997-10-14T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 4.78, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10705, + "EmployeeID": 9, + "OrderDate": "1997-10-15T00:00:00", + "RequiredDate": "1997-11-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10706, + "EmployeeID": 8, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-11-13T00:00:00", + "ShippedDate": "1997-10-21T00:00:00", + "ShipVia": 3, + "Freight": 135.63, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 14000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10707, + "EmployeeID": 4, + "OrderDate": "1997-10-16T00:00:00", + "RequiredDate": "1997-10-30T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 3, + "Freight": 21.74, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 29000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "THEBI", + "Company": "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", + "Orders": [ + { + "OrderID": 10708, + "EmployeeID": 6, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 2.96, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 10709, + "EmployeeID": 1, + "OrderDate": "1997-10-17T00:00:00", + "RequiredDate": "1997-11-14T00:00:00", + "ShippedDate": "1997-11-20T00:00:00", + "ShipVia": 3, + "Freight": 210.8, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", + "Orders": [ + { + "OrderID": 10710, + "EmployeeID": 1, + "OrderDate": "1997-10-20T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-10-23T00:00:00", + "ShipVia": 1, + "Freight": 4.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10711, + "EmployeeID": 5, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 52.41, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 120, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10712, + "EmployeeID": 3, + "OrderDate": "1997-10-21T00:00:00", + "RequiredDate": "1997-11-18T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 1, + "Freight": 89.93, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10713, + "EmployeeID": 1, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-24T00:00:00", + "ShipVia": 1, + "Freight": 167.05, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 24, + "Discount": 0 + } + ] + }, + { + "OrderID": 10714, + "EmployeeID": 5, + "OrderDate": "1997-10-22T00:00:00", + "RequiredDate": "1997-11-19T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", + "ShipVia": 3, + "Freight": 24.49, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 27, + "Discount": 0.25 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 18, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10715, + "EmployeeID": 3, + "OrderDate": "1997-10-23T00:00:00", + "RequiredDate": "1997-11-06T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 1, + "Freight": 63.2, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", + "ContactTitle": "Sales Representative", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", + "Orders": [ + { + "OrderID": 10716, + "EmployeeID": 4, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-27T00:00:00", + "ShipVia": 2, + "Freight": 22.57, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10717, + "EmployeeID": 1, + "OrderDate": "1997-10-24T00:00:00", + "RequiredDate": "1997-11-21T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 2, + "Freight": 59.25, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 32, + "Discount": 0.06 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10718, + "EmployeeID": 1, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-10-29T00:00:00", + "ShipVia": 3, + "Freight": 170.88, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 36, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LETSS", + "Company": "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", + "Orders": [ + { + "OrderID": 10719, + "EmployeeID": 8, + "OrderDate": "1997-10-27T00:00:00", + "RequiredDate": "1997-11-24T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 3, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 40, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10720, + "EmployeeID": 8, + "OrderDate": "1997-10-28T00:00:00", + "RequiredDate": "1997-11-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 9.53, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10721, + "EmployeeID": 5, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-11-26T00:00:00", + "ShippedDate": "1997-10-31T00:00:00", + "ShipVia": 3, + "Freight": 48.92, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 50, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10722, + "EmployeeID": 8, + "OrderDate": "1997-10-29T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-04T00:00:00", + "ShipVia": 1, + "Freight": 74.58, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10723, + "EmployeeID": 3, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-11-27T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 1, + "Freight": 21.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MEREP", + "Company": "Mère Paillarde", + "ContactName": "Jean Fresnière", + "ContactTitle": "Marketing Assistant", + "Address": "43 rue St. Laurent", + "City": "Montréal", + "Region": "Québec", + "PostalCode": 31000, + "Country": "Canada", + "Phone": "(514) 555-8054", + "Fax": "(514) 555-8055", + "Orders": [ + { + "OrderID": 10724, + "EmployeeID": 8, + "OrderDate": "1997-10-30T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 2, + "Freight": 57.75, + "ShipName": "Mère Paillarde", + "ShipAddress": "43 rue St. Laurent", + "ShipCity": "Montréal", + "ShipRegion": "Québec", + "ShipPostalCode": 39000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FAMIA", + "Company": "Familia Arquibaldo", + "ContactName": "Aria Cruz", + "ContactTitle": "Marketing Assistant", + "Address": "Rua Orós, 92", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5442, + "Country": "Brazil", + "Phone": "(11) 555-9857", + "Orders": [ + { + "OrderID": 10725, + "EmployeeID": 4, + "OrderDate": "1997-10-31T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-05T00:00:00", + "ShipVia": 3, + "Freight": 10.83, + "ShipName": "Familia Arquibaldo", + "ShipAddress": "Rua Orós, 92", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5442, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 18000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", + "Orders": [ + { + "OrderID": 10726, + "EmployeeID": 4, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-11-17T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 16.56, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 21000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10727, + "EmployeeID": 2, + "OrderDate": "1997-11-03T00:00:00", + "RequiredDate": "1997-12-01T00:00:00", + "ShippedDate": "1997-12-05T00:00:00", + "ShipVia": 1, + "Freight": 89.9, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10728, + "EmployeeID": 4, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-02T00:00:00", + "ShippedDate": "1997-11-11T00:00:00", + "ShipVia": 2, + "Freight": 58.33, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10729, + "EmployeeID": 8, + "OrderDate": "1997-11-04T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 3, + "Freight": 141.06, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10730, + "EmployeeID": 5, + "OrderDate": "1997-11-05T00:00:00", + "RequiredDate": "1997-12-03T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 20.12, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 3, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Orders": [ + { + "OrderID": 10731, + "EmployeeID": 7, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-14T00:00:00", + "ShipVia": 1, + "Freight": 96.65, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10732, + "EmployeeID": 3, + "OrderDate": "1997-11-06T00:00:00", + "RequiredDate": "1997-12-04T00:00:00", + "ShippedDate": "1997-11-07T00:00:00", + "ShipVia": 1, + "Freight": 16.97, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 29000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10733, + "EmployeeID": 1, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-10T00:00:00", + "ShipVia": 3, + "Freight": 110.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 27000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 10734, + "EmployeeID": 2, + "OrderDate": "1997-11-07T00:00:00", + "RequiredDate": "1997-12-05T00:00:00", + "ShippedDate": "1997-11-12T00:00:00", + "ShipVia": 3, + "Freight": 1.63, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LETSS", + "Company": "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", + "Orders": [ + { + "OrderID": 10735, + "EmployeeID": 6, + "OrderDate": "1997-11-10T00:00:00", + "RequiredDate": "1997-12-08T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10736, + "EmployeeID": 9, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 44.1, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VINET", + "Company": "Vins et alcools Chevalier", + "ContactName": "Paul Henriot", + "ContactTitle": "Accounting Manager", + "Address": "59 rue de l'Abbaye", + "City": "Reims", + "PostalCode": 51100, + "Country": "France", + "Phone": "26.47.15.10", + "Fax": "26.47.15.11", + "Orders": [ + { + "OrderID": 10737, + "EmployeeID": 2, + "OrderDate": "1997-11-11T00:00:00", + "RequiredDate": "1997-12-09T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 2, + "Freight": 7.79, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", + "Orders": [ + { + "OrderID": 10738, + "EmployeeID": 2, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 1, + "Freight": 2.91, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VINET", + "Company": "Vins et alcools Chevalier", + "ContactName": "Paul Henriot", + "ContactTitle": "Accounting Manager", + "Address": "59 rue de l'Abbaye", + "City": "Reims", + "PostalCode": 51100, + "Country": "France", + "Phone": "26.47.15.10", + "Fax": "26.47.15.11", + "Orders": [ + { + "OrderID": 10739, + "EmployeeID": 3, + "OrderDate": "1997-11-12T00:00:00", + "RequiredDate": "1997-12-10T00:00:00", + "ShippedDate": "1997-11-17T00:00:00", + "ShipVia": 3, + "Freight": 11.08, + "ShipName": "Vins et alcools Chevalier", + "ShipAddress": "59 rue de l'Abbaye", + "ShipCity": "Reims", + "ShipPostalCode": 51100, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10740, + "EmployeeID": 4, + "OrderDate": "1997-11-13T00:00:00", + "RequiredDate": "1997-12-11T00:00:00", + "ShippedDate": "1997-11-25T00:00:00", + "ShipVia": 2, + "Freight": 81.88, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 14, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 30000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10741, + "EmployeeID": 4, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-11-28T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 3, + "Freight": 10.96, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 13000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 14000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10742, + "EmployeeID": 3, + "OrderDate": "1997-11-14T00:00:00", + "RequiredDate": "1997-12-12T00:00:00", + "ShippedDate": "1997-11-18T00:00:00", + "ShipVia": 3, + "Freight": 243.73, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 25000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 37000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10743, + "EmployeeID": 1, + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 2, + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 48000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 28, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10744, + "EmployeeID": 6, + "OrderDate": "1997-11-17T00:00:00", + "RequiredDate": "1997-12-15T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 69.19, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 50, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10745, + "EmployeeID": 9, + "OrderDate": "1997-11-18T00:00:00", + "RequiredDate": "1997-12-16T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 3.52, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 7, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Orders": [ + { + "OrderID": 10746, + "EmployeeID": 1, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-21T00:00:00", + "ShipVia": 3, + "Freight": 31.43, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10747, + "EmployeeID": 6, + "OrderDate": "1997-11-19T00:00:00", + "RequiredDate": "1997-12-17T00:00:00", + "ShippedDate": "1997-11-26T00:00:00", + "ShipVia": 1, + "Freight": 117.33, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10748, + "EmployeeID": 3, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 1, + "Freight": 232.55, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 44, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 28, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 36000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10749, + "EmployeeID": 4, + "OrderDate": "1997-11-20T00:00:00", + "RequiredDate": "1997-12-18T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 61.53, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40198, + "ShipPostalCode": 33000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10750, + "EmployeeID": 9, + "OrderDate": "1997-11-21T00:00:00", + "RequiredDate": "1997-12-19T00:00:00", + "ShippedDate": "1997-11-24T00:00:00", + "ShipVia": 1, + "Freight": 79.3, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 5, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 10751, + "EmployeeID": 3, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-12-03T00:00:00", + "ShipVia": 3, + "Freight": 130.79, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0.1 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 15000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", + "Orders": [ + { + "OrderID": 10752, + "EmployeeID": 2, + "OrderDate": "1997-11-24T00:00:00", + "RequiredDate": "1997-12-22T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 3, + "Freight": 1.39, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", + "Orders": [ + { + "OrderID": 10753, + "EmployeeID": 3, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 1, + "Freight": 7.7, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10754, + "EmployeeID": 6, + "OrderDate": "1997-11-25T00:00:00", + "RequiredDate": "1997-12-23T00:00:00", + "ShippedDate": "1997-11-27T00:00:00", + "ShipVia": 3, + "Freight": 2.38, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10755, + "EmployeeID": 4, + "OrderDate": "1997-11-26T00:00:00", + "RequiredDate": "1997-12-24T00:00:00", + "ShippedDate": "1997-11-28T00:00:00", + "ShipVia": 2, + "Freight": 16.71, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 14, + "Discount": 0.25 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 25, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10756, + "EmployeeID": 8, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-02T00:00:00", + "ShipVia": 2, + "Freight": 73.21, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 20, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10757, + "EmployeeID": 6, + "OrderDate": "1997-11-27T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 1, + "Freight": 8.19, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 10758, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-04T00:00:00", + "ShipVia": 3, + "Freight": 138.17, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", + "Orders": [ + { + "OrderID": 10759, + "EmployeeID": 3, + "OrderDate": "1997-11-28T00:00:00", + "RequiredDate": "1997-12-26T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 3, + "Freight": 11.99, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 38000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", + "Orders": [ + { + "OrderID": 10760, + "EmployeeID": 4, + "OrderDate": "1997-12-01T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1997-12-10T00:00:00", + "ShipVia": 1, + "Freight": 155.64, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 12000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.25 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10761, + "EmployeeID": 5, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 2, + "Freight": 18.66, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 34000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10762, + "EmployeeID": 3, + "OrderDate": "1997-12-02T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 328.74, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", + "Orders": [ + { + "OrderID": 10763, + "EmployeeID": 3, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 37.35, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10764, + "EmployeeID": 6, + "OrderDate": "1997-12-03T00:00:00", + "RequiredDate": "1997-12-31T00:00:00", + "ShippedDate": "1997-12-08T00:00:00", + "ShipVia": 3, + "Freight": 145.45, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 130, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10765, + "EmployeeID": 3, + "OrderDate": "1997-12-04T00:00:00", + "RequiredDate": "1998-01-01T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 3, + "Freight": 42.74, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 80, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10766, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-09T00:00:00", + "ShipVia": 1, + "Freight": 157.55, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10767, + "EmployeeID": 4, + "OrderDate": "1997-12-05T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 3, + "Freight": 1.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 43000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10768, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-15T00:00:00", + "ShipVia": 2, + "Freight": 146.32, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 32000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10769, + "EmployeeID": 3, + "OrderDate": "1997-12-08T00:00:00", + "RequiredDate": "1998-01-05T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 65.06, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10770, + "EmployeeID": 8, + "OrderDate": "1997-12-09T00:00:00", + "RequiredDate": "1998-01-06T00:00:00", + "ShippedDate": "1997-12-17T00:00:00", + "ShipVia": 3, + "Freight": 5.32, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10771, + "EmployeeID": 9, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 11.19, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10772, + "EmployeeID": 3, + "OrderDate": "1997-12-10T00:00:00", + "RequiredDate": "1998-01-07T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 91.28, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10773, + "EmployeeID": 1, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1998-01-08T00:00:00", + "ShippedDate": "1997-12-16T00:00:00", + "ShipVia": 3, + "Freight": 96.43, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 33, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 70, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 7, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 18000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10774, + "EmployeeID": 4, + "OrderDate": "1997-12-11T00:00:00", + "RequiredDate": "1997-12-25T00:00:00", + "ShippedDate": "1997-12-12T00:00:00", + "ShipVia": 1, + "Freight": 48.2, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 20000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0.25 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "THECR", + "Company": "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", + "Orders": [ + { + "OrderID": 10775, + "EmployeeID": 7, + "OrderDate": "1997-12-12T00:00:00", + "RequiredDate": "1998-01-09T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 20.25, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10776, + "EmployeeID": 1, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1998-01-12T00:00:00", + "ShippedDate": "1997-12-18T00:00:00", + "ShipVia": 3, + "Freight": 351.53, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.06 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 27, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 120, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 10777, + "EmployeeID": 7, + "OrderDate": "1997-12-15T00:00:00", + "RequiredDate": "1997-12-29T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 3.01, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 18000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10778, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 1, + "Freight": 6.79, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 13000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", + "Orders": [ + { + "OrderID": 10779, + "EmployeeID": 3, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1998-01-13T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 2, + "Freight": 58.13, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10780, + "EmployeeID": 2, + "OrderDate": "1997-12-16T00:00:00", + "RequiredDate": "1997-12-30T00:00:00", + "ShippedDate": "1997-12-25T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 10781, + "EmployeeID": 2, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 3, + "Freight": 73.16, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0.2 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", + "Orders": [ + { + "OrderID": 10782, + "EmployeeID": 9, + "OrderDate": "1997-12-17T00:00:00", + "RequiredDate": "1998-01-14T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 1.1, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 1, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10783, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-19T00:00:00", + "ShipVia": 2, + "Freight": 124.98, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10784, + "EmployeeID": 4, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-22T00:00:00", + "ShipVia": 3, + "Freight": 70.09, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 30, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "GROSR", + "Company": "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", + "Orders": [ + { + "OrderID": 10785, + "EmployeeID": 1, + "OrderDate": "1997-12-18T00:00:00", + "RequiredDate": "1998-01-15T00:00:00", + "ShippedDate": "1997-12-24T00:00:00", + "ShipVia": 3, + "Freight": 1.51, + "ShipName": "GROSELLA-Restaurante", + "ShipAddress": "5ª Ave. Los Palos Grandes", + "ShipCity": "Caracas", + "ShipRegion": "DF", + "ShipPostalCode": 1081, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10786, + "EmployeeID": 8, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-16T00:00:00", + "ShippedDate": "1997-12-23T00:00:00", + "ShipVia": 1, + "Freight": 110.87, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 42, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10787, + "EmployeeID": 2, + "OrderDate": "1997-12-19T00:00:00", + "RequiredDate": "1998-01-02T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 249.93, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10788, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 42.7, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "FOLIG", + "Company": "Folies gourmandes", + "ContactName": "Martine Rancé", + "ContactTitle": "Sales Associate", + "Address": "184, chaussée de Tournai", + "City": "Lille", + "PostalCode": 59000, + "Country": "France", + "Phone": "20.16.10.16", + "Fax": "20.16.10.17", + "Orders": [ + { + "OrderID": 10789, + "EmployeeID": 1, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 100.6, + "ShipName": "Folies gourmandes", + "ShipAddress": "184, chaussée de Tournai", + "ShipCity": "Lille", + "ShipPostalCode": 59000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 10790, + "EmployeeID": 6, + "OrderDate": "1997-12-22T00:00:00", + "RequiredDate": "1998-01-19T00:00:00", + "ShippedDate": "1997-12-26T00:00:00", + "ShipVia": 1, + "Freight": 28.23, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 3, + "Discount": 0.16 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10791, + "EmployeeID": 6, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-01T00:00:00", + "ShipVia": 2, + "Freight": 16.85, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10792, + "EmployeeID": 1, + "OrderDate": "1997-12-23T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 3, + "Freight": 23.79, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 18000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10793, + "EmployeeID": 3, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 3, + "Freight": 4.52, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10794, + "EmployeeID": 6, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 1, + "Freight": 21.49, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 15, + "Discount": 0.2 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 6, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10795, + "EmployeeID": 8, + "OrderDate": "1997-12-24T00:00:00", + "RequiredDate": "1998-01-21T00:00:00", + "ShippedDate": "1998-01-20T00:00:00", + "ShipVia": 2, + "Freight": 126.66, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 65, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 35, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10796, + "EmployeeID": 3, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 21, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 24, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", + "Orders": [ + { + "OrderID": 10797, + "EmployeeID": 7, + "OrderDate": "1997-12-25T00:00:00", + "RequiredDate": "1998-01-22T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 33.35, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 37000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10798, + "EmployeeID": 2, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 1, + "Freight": 2.33, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 50129, + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10799, + "EmployeeID": 9, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 30.76, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10800, + "EmployeeID": 1, + "OrderDate": "1997-12-26T00:00:00", + "RequiredDate": "1998-01-23T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 3, + "Freight": 137.44, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 50000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 50, + "Discount": 0.1 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 7, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", + "Orders": [ + { + "OrderID": 10801, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1997-12-31T00:00:00", + "ShipVia": 2, + "Freight": 97.09, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 20, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", + "Orders": [ + { + "OrderID": 10802, + "EmployeeID": 4, + "OrderDate": "1997-12-29T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-01-02T00:00:00", + "ShipVia": 2, + "Freight": 257.26, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 5, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10803, + "EmployeeID": 4, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-06T00:00:00", + "ShipVia": 1, + "Freight": 55.23, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 24, + "Discount": 0.06 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 20000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10804, + "EmployeeID": 6, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 2, + "Freight": 27.33, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 20000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 36, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 4, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "THEBI", + "Company": "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", + "Orders": [ + { + "OrderID": 10805, + "EmployeeID": 2, + "OrderDate": "1997-12-30T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 237.34, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10806, + "EmployeeID": 3, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-05T00:00:00", + "ShipVia": 2, + "Freight": 22.11, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", + "Orders": [ + { + "OrderID": 10807, + "EmployeeID": 4, + "OrderDate": "1997-12-31T00:00:00", + "RequiredDate": "1998-01-28T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 1, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10808, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 3, + "Freight": 45.53, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10809, + "EmployeeID": 7, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 1, + "Freight": 4.87, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAUGB", + "Company": "Laughing Bacchus Wine Cellars", + "ContactName": "Yoshi Tannamuri", + "ContactTitle": "Marketing Assistant", + "Address": "1900 Oak St.", + "City": "Vancouver", + "Region": "BC", + "PostalCode": 42000, + "Country": "Canada", + "Phone": "(604) 555-3392", + "Fax": "(604) 555-7293", + "Orders": [ + { + "OrderID": 10810, + "EmployeeID": 2, + "OrderDate": "1998-01-01T00:00:00", + "RequiredDate": "1998-01-29T00:00:00", + "ShippedDate": "1998-01-07T00:00:00", + "ShipVia": 3, + "Freight": 4.33, + "ShipName": "Laughing Bacchus Wine Cellars", + "ShipAddress": "2319 Elm St.", + "ShipCity": "Vancouver", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10811, + "EmployeeID": 8, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-08T00:00:00", + "ShipVia": 1, + "Freight": 31.22, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10812, + "EmployeeID": 5, + "OrderDate": "1998-01-02T00:00:00", + "RequiredDate": "1998-01-30T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 1, + "Freight": 59.78, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 16, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10813, + "EmployeeID": 1, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-09T00:00:00", + "ShipVia": 1, + "Freight": 47.38, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10814, + "EmployeeID": 3, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 130.94, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 48, + "UnitPrice": 12.75, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10815, + "EmployeeID": 2, + "OrderDate": "1998-01-05T00:00:00", + "RequiredDate": "1998-02-02T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 3, + "Freight": 14.62, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 16, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 10816, + "EmployeeID": 4, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-02-03T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 2, + "Freight": 719.78, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10817, + "EmployeeID": 3, + "OrderDate": "1998-01-06T00:00:00", + "RequiredDate": "1998-01-20T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 306.07, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 25, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10818, + "EmployeeID": 7, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-12T00:00:00", + "ShipVia": 3, + "Freight": 65.48, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", + "Orders": [ + { + "OrderID": 10819, + "EmployeeID": 2, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 19.76, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10820, + "EmployeeID": 3, + "OrderDate": "1998-01-07T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "ShipVia": 2, + "Freight": 37.52, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10821, + "EmployeeID": 1, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-15T00:00:00", + "ShipVia": 1, + "Freight": 36.68, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TRAIH", + "Company": "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", + "Orders": [ + { + "OrderID": 10822, + "EmployeeID": 6, + "OrderDate": "1998-01-08T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-01-16T00:00:00", + "ShipVia": 3, + "Freight": 7, + "ShipName": "Trail's Head Gourmet Provisioners", + "ShipAddress": "722 DaVinci Blvd.", + "ShipCity": "Kirkland", + "ShipRegion": "WA", + "ShipPostalCode": 98034, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10823, + "EmployeeID": 5, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-13T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 46000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10824, + "EmployeeID": 8, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 1.23, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 23000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", + "Orders": [ + { + "OrderID": 10825, + "EmployeeID": 1, + "OrderDate": "1998-01-09T00:00:00", + "RequiredDate": "1998-02-06T00:00:00", + "ShippedDate": "1998-01-14T00:00:00", + "ShipVia": 1, + "Freight": 79.25, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLONP", + "Company": "Blondesddsl père et fils", + "ContactName": "Frédérique Citeaux", + "ContactTitle": "Marketing Manager", + "Address": "24, place Kléber", + "City": "Strasbourg", + "PostalCode": 67000, + "Country": "France", + "Phone": "88.60.15.31", + "Fax": "88.60.15.32", + "Orders": [ + { + "OrderID": 10826, + "EmployeeID": 6, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 1, + "Freight": 7.09, + "ShipName": "Blondel père et fils", + "ShipAddress": "24, place Kléber", + "ShipCity": "Strasbourg", + "ShipPostalCode": 67000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10827, + "EmployeeID": 1, + "OrderDate": "1998-01-12T00:00:00", + "RequiredDate": "1998-01-26T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 63.54, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", + "ContactTitle": "Sales Representative", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", + "Orders": [ + { + "OrderID": 10828, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-01-27T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 90.85, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 49000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10829, + "EmployeeID": 9, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-10T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 1, + "Freight": 154.72, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 20759, + "ShipPostalCode": 13000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", + "Orders": [ + { + "OrderID": 10830, + "EmployeeID": 4, + "OrderDate": "1998-01-13T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 2, + "Freight": 81.83, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 28, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", + "Orders": [ + { + "OrderID": 10831, + "EmployeeID": 3, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 72.19, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10832, + "EmployeeID": 2, + "OrderDate": "1998-01-14T00:00:00", + "RequiredDate": "1998-02-11T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 2, + "Freight": 43.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 3, + "Discount": 0.2 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 16, + "Discount": 0.2 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10833, + "EmployeeID": 6, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 2, + "Freight": 71.49, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 9, + "Discount": 0.1 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 9, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", + "Orders": [ + { + "OrderID": 10834, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-19T00:00:00", + "ShipVia": 3, + "Freight": 29.78, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 8, + "Discount": 0.06 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", + "Orders": [ + { + "OrderID": 10835, + "EmployeeID": 1, + "OrderDate": "1998-01-15T00:00:00", + "RequiredDate": "1998-02-12T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 3, + "Freight": 69.53, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10836, + "EmployeeID": 7, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-21T00:00:00", + "ShipVia": 1, + "Freight": 411.88, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 52, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 38000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10837, + "EmployeeID": 9, + "OrderDate": "1998-01-16T00:00:00", + "RequiredDate": "1998-02-13T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 13.32, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 44000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10838, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 59.28, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "TRADH", + "Company": "Tradição Hipermercados", + "ContactName": "Anabela Domingues", + "ContactTitle": "Sales Representative", + "Address": "Av. Inês de Castro, 414", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5634, + "Country": "Brazil", + "Phone": "(11) 555-2167", + "Fax": "(11) 555-2168", + "Orders": [ + { + "OrderID": 10839, + "EmployeeID": 3, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-01-22T00:00:00", + "ShipVia": 3, + "Freight": 35.43, + "ShipName": "Tradiçao Hipermercados", + "ShipAddress": "Av. Inês de Castro, 414", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5634, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 15, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10840, + "EmployeeID": 4, + "OrderDate": "1998-01-19T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 2, + "Freight": 2.71, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 6, + "Discount": 0.2 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10841, + "EmployeeID": 5, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 424.3, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10842, + "EmployeeID": 1, + "OrderDate": "1998-01-20T00:00:00", + "RequiredDate": "1998-02-17T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 3, + "Freight": 54.42, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10843, + "EmployeeID": 4, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 9.26, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 4, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 10844, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-18T00:00:00", + "ShippedDate": "1998-01-26T00:00:00", + "ShipVia": 2, + "Freight": 25.22, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10845, + "EmployeeID": 8, + "OrderDate": "1998-01-21T00:00:00", + "RequiredDate": "1998-02-04T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 212.98, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 42, + "Discount": 0.1 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 60, + "Discount": 0.1 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 48, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10846, + "EmployeeID": 2, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-01-23T00:00:00", + "ShipVia": 3, + "Freight": 56.46, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10847, + "EmployeeID": 4, + "OrderDate": "1998-01-22T00:00:00", + "RequiredDate": "1998-02-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 3, + "Freight": 487.57, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.2 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0.2 + }, + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 60, + "Discount": 0.2 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 36, + "Discount": 0.2 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 45, + "Discount": 0.2 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 55, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "CONSH", + "Company": "Consolidated Holdings", + "ContactName": "Elizabeth Brown", + "ContactTitle": "Sales Representative", + "Address": "Berkeley Gardens 12 Brewery", + "City": "London", + "PostalCode": 23000, + "Country": "UK", + "Phone": "(171) 555-2282", + "Fax": "(171) 555-9199", + "Orders": [ + { + "OrderID": 10848, + "EmployeeID": 7, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-29T00:00:00", + "ShipVia": 2, + "Freight": 38.24, + "ShipName": "Consolidated Holdings", + "ShipAddress": "Berkeley Gardens 12 Brewery", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 9, + "UnitPrice": 97, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10849, + "EmployeeID": 9, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-02-20T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 2, + "Freight": 0.56, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 18, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "VICTE", + "Company": "Victuailles en stock", + "ContactName": "Mary Saveley", + "ContactTitle": "Sales Agent", + "Address": "2, rue du Commerce", + "City": "Lyon", + "PostalCode": 69004, + "Country": "France", + "Phone": "78.32.54.86", + "Fax": "78.32.54.87", + "Orders": [ + { + "OrderID": 10850, + "EmployeeID": 1, + "OrderDate": "1998-01-23T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 49.19, + "ShipName": "Victuailles en stock", + "ShipAddress": "2, rue du Commerce", + "ShipCity": "Lyon", + "ShipPostalCode": 69004, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 4, + "Discount": 0.16 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10851, + "EmployeeID": 5, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-23T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 1, + "Freight": 160.55, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 5, + "Discount": 0.06 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 42, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10852, + "EmployeeID": 8, + "OrderDate": "1998-01-26T00:00:00", + "RequiredDate": "1998-02-09T00:00:00", + "ShippedDate": "1998-01-30T00:00:00", + "ShipVia": 1, + "Freight": 174.05, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", + "Orders": [ + { + "OrderID": 10853, + "EmployeeID": 9, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 2, + "Freight": 53.83, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10854, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-05T00:00:00", + "ShipVia": 2, + "Freight": 100.22, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 100, + "Discount": 0.16 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 65, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10855, + "EmployeeID": 3, + "OrderDate": "1998-01-27T00:00:00", + "RequiredDate": "1998-02-24T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 1, + "Freight": 170.97, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 15, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "ANTON", + "Company": "Antonio Moreno Taquería", + "ContactName": "Antonio Moreno", + "ContactTitle": "Owner", + "Address": "Mataderos 2312", + "City": "México D.F.", + "PostalCode": 5023, + "Country": "Mexico", + "Phone": "(5) 555-3932", + "Orders": [ + { + "OrderID": 10856, + "EmployeeID": 3, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 58.43, + "ShipName": "Antonio Moreno Taquería", + "ShipAddress": "Mataderos 2312", + "ShipCity": "México D.F.", + "ShipPostalCode": 5023, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 33000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10857, + "EmployeeID": 8, + "OrderDate": "1998-01-28T00:00:00", + "RequiredDate": "1998-02-25T00:00:00", + "ShippedDate": "1998-02-06T00:00:00", + "ShipVia": 2, + "Freight": 188.85, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 43000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", + "Orders": [ + { + "OrderID": 10858, + "EmployeeID": 2, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-03T00:00:00", + "ShipVia": 1, + "Freight": 52.51, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10859, + "EmployeeID": 1, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 76.1, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 35, + "Discount": 0.25 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 30, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10860, + "EmployeeID": 3, + "OrderDate": "1998-01-29T00:00:00", + "RequiredDate": "1998-02-26T00:00:00", + "ShippedDate": "1998-02-04T00:00:00", + "ShipVia": 3, + "Freight": 19.26, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10861, + "EmployeeID": 4, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-02-27T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "ShipVia": 2, + "Freight": 14.93, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10862, + "EmployeeID": 8, + "OrderDate": "1998-01-30T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-02T00:00:00", + "ShipVia": 2, + "Freight": 53.23, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10863, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-17T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 12, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 24000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10864, + "EmployeeID": 4, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-03-02T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 3.04, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10865, + "EmployeeID": 2, + "OrderDate": "1998-02-02T00:00:00", + "RequiredDate": "1998-02-16T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 348.14, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0.06 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 80, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 32000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10866, + "EmployeeID": 5, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-03T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 109.11, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 21, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 6, + "Discount": 0.25 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 40, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "LONEP", + "Company": "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", + "Orders": [ + { + "OrderID": 10867, + "EmployeeID": 6, + "OrderDate": "1998-02-03T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 1, + "Freight": 1.93, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10868, + "EmployeeID": 7, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 191.27, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 42, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "SEVES", + "Company": "Seven Seas Imports", + "ContactName": "Hari Kumar", + "ContactTitle": "Sales Manager", + "Address": "90 Wadhurst Rd.", + "City": "London", + "PostalCode": 34000, + "Country": "UK", + "Phone": "(171) 555-1717", + "Fax": "(171) 555-5646", + "Orders": [ + { + "OrderID": 10869, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 143.28, + "ShipName": "Seven Seas Imports", + "ShipAddress": "90 Wadhurst Rd.", + "ShipCity": "London", + "ShipPostalCode": 34000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10870, + "EmployeeID": 5, + "OrderDate": "1998-02-04T00:00:00", + "RequiredDate": "1998-03-04T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "ShipVia": 3, + "Freight": 12.04, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10871, + "EmployeeID": 9, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-10T00:00:00", + "ShipVia": 2, + "Freight": 112.27, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 12, + "Discount": 0.06 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 16, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 10872, + "EmployeeID": 5, + "OrderDate": "1998-02-05T00:00:00", + "RequiredDate": "1998-03-05T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 2, + "Freight": 175.32, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 10, + "Discount": 0.06 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", + "Orders": [ + { + "OrderID": 10873, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-09T00:00:00", + "ShipVia": 1, + "Freight": 0.82, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 10874, + "EmployeeID": 5, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-02-11T00:00:00", + "ShipVia": 2, + "Freight": 19.58, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 38000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10875, + "EmployeeID": 4, + "OrderDate": "1998-02-06T00:00:00", + "RequiredDate": "1998-03-06T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 2, + "Freight": 32.37, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 37000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 21, + "Discount": 0.1 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10876, + "EmployeeID": 7, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 60.42, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 10877, + "EmployeeID": 1, + "OrderDate": "1998-02-09T00:00:00", + "RequiredDate": "1998-03-09T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 1, + "Freight": 38.06, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10878, + "EmployeeID": 4, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 1, + "Freight": 46.69, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", + "Orders": [ + { + "OrderID": 10879, + "EmployeeID": 3, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-10T00:00:00", + "ShippedDate": "1998-02-12T00:00:00", + "ShipVia": 3, + "Freight": 8.5, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 41000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10880, + "EmployeeID": 7, + "OrderDate": "1998-02-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 88.01, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 26000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 50, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", + "Orders": [ + { + "OrderID": 10881, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 2.84, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10882, + "EmployeeID": 4, + "OrderDate": "1998-02-11T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 23.1, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 32, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "LONEP", + "Company": "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", + "Orders": [ + { + "OrderID": 10883, + "EmployeeID": 8, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 3, + "Freight": 0.53, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LETSS", + "Company": "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", + "Orders": [ + { + "OrderID": 10884, + "EmployeeID": 4, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-13T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 21, + "Discount": 0.06 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 12, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10885, + "EmployeeID": 6, + "OrderDate": "1998-02-12T00:00:00", + "RequiredDate": "1998-03-12T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 3, + "Freight": 5.64, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10886, + "EmployeeID": 1, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 4.99, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", + "Orders": [ + { + "OrderID": 10887, + "EmployeeID": 8, + "OrderDate": "1998-02-13T00:00:00", + "RequiredDate": "1998-03-13T00:00:00", + "ShippedDate": "1998-02-16T00:00:00", + "ShipVia": 3, + "Freight": 1.25, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 10888, + "EmployeeID": 1, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 2, + "Freight": 51.87, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10889, + "EmployeeID": 9, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 3, + "Freight": 280.61, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "DUMON", + "Company": "Du monde entier", + "ContactName": "Janine Labrune", + "ContactTitle": "Owner", + "Address": "67, rue des Cinquante Otages", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.67.88.88", + "Fax": "40.67.89.89", + "Orders": [ + { + "OrderID": 10890, + "EmployeeID": 7, + "OrderDate": "1998-02-16T00:00:00", + "RequiredDate": "1998-03-16T00:00:00", + "ShippedDate": "1998-02-18T00:00:00", + "ShipVia": 1, + "Freight": 32.76, + "ShipName": "Du monde entier", + "ShipAddress": "67, rue des Cinquante Otages", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10891, + "EmployeeID": 7, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 20.37, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 46000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", + "Orders": [ + { + "OrderID": 10892, + "EmployeeID": 4, + "OrderDate": "1998-02-17T00:00:00", + "RequiredDate": "1998-03-17T00:00:00", + "ShippedDate": "1998-02-19T00:00:00", + "ShipVia": 2, + "Freight": 120.27, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 30000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 40, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 10893, + "EmployeeID": 9, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 2, + "Freight": 77.78, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10894, + "EmployeeID": 1, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-20T00:00:00", + "ShipVia": 1, + "Freight": 116.13, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 28, + "Discount": 0.06 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 120, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10895, + "EmployeeID": 3, + "OrderDate": "1998-02-18T00:00:00", + "RequiredDate": "1998-03-18T00:00:00", + "ShippedDate": "1998-02-23T00:00:00", + "ShipVia": 1, + "Freight": 162.75, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 91, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 100, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 29000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", + "Orders": [ + { + "OrderID": 10896, + "EmployeeID": 7, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 32.45, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 15000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 16, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10897, + "EmployeeID": 3, + "OrderDate": "1998-02-19T00:00:00", + "RequiredDate": "1998-03-19T00:00:00", + "ShippedDate": "1998-02-25T00:00:00", + "ShipVia": 2, + "Freight": 603.54, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 36, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", + "Orders": [ + { + "OrderID": 10898, + "EmployeeID": 4, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 1.27, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10899, + "EmployeeID": 5, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10900, + "EmployeeID": 1, + "OrderDate": "1998-02-20T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 1.66, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10901, + "EmployeeID": 4, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-02-26T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 25000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10902, + "EmployeeID": 1, + "OrderDate": "1998-02-23T00:00:00", + "RequiredDate": "1998-03-23T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 1, + "Freight": 44.15, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 33000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 6, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10903, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 36.71, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 10904, + "EmployeeID": 3, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 162.95, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10905, + "EmployeeID": 9, + "OrderDate": "1998-02-24T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 13.72, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 12000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10906, + "EmployeeID": 4, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-11T00:00:00", + "ShippedDate": "1998-03-03T00:00:00", + "ShipVia": 3, + "Freight": 26.29, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", + "Orders": [ + { + "OrderID": 10907, + "EmployeeID": 6, + "OrderDate": "1998-02-25T00:00:00", + "RequiredDate": "1998-03-25T00:00:00", + "ShippedDate": "1998-02-27T00:00:00", + "ShipVia": 3, + "Freight": 9.19, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10908, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-06T00:00:00", + "ShipVia": 2, + "Freight": 32.96, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 14, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", + "Orders": [ + { + "OrderID": 10909, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-10T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", + "Orders": [ + { + "OrderID": 10910, + "EmployeeID": 1, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 3, + "Freight": 38.11, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 10911, + "EmployeeID": 3, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 1, + "Freight": 38.19, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10912, + "EmployeeID": 2, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 580.91, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10913, + "EmployeeID": 4, + "OrderDate": "1998-02-26T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 1, + "Freight": 33.05, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 40, + "Discount": 0.25 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10914, + "EmployeeID": 6, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 1, + "Freight": 21.19, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 25, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 10915, + "EmployeeID": 2, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-02T00:00:00", + "ShipVia": 2, + "Freight": 3.51, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", + "ContactTitle": "Sales Representative", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", + "Orders": [ + { + "OrderID": 10916, + "EmployeeID": 1, + "OrderDate": "1998-02-27T00:00:00", + "RequiredDate": "1998-03-27T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 63.77, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 10917, + "EmployeeID": 4, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 2, + "Freight": 8.29, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 42000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10918, + "EmployeeID": 3, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 48.83, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 25, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10919, + "EmployeeID": 2, + "OrderDate": "1998-03-02T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-04T00:00:00", + "ShipVia": 2, + "Freight": 19.8, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 34000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10920, + "EmployeeID": 4, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 2, + "Freight": 29.61, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 28000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10921, + "EmployeeID": 1, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-09T00:00:00", + "ShipVia": 1, + "Freight": 176.48, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10922, + "EmployeeID": 5, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-03-31T00:00:00", + "ShippedDate": "1998-03-05T00:00:00", + "ShipVia": 3, + "Freight": 62.74, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 10923, + "EmployeeID": 7, + "OrderDate": "1998-03-03T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 68.26, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "BERGS", + "Company": "Berglunds snabbköp", + "ContactName": "Christina Berglund", + "ContactTitle": "Order Administrator", + "Address": "Berguvsvägen 8", + "City": "Luleå", + "PostalCode": 11000, + "Country": "Sweden", + "Phone": "0921-12 34 65", + "Fax": "0921-12 34 67", + "Orders": [ + { + "OrderID": 10924, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 2, + "Freight": 151.52, + "ShipName": "Berglunds snabbköp", + "ShipAddress": "Berguvsvägen 8", + "ShipCity": "Luleå", + "ShipPostalCode": 32000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 20, + "Discount": 0.1 + }, + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10925, + "EmployeeID": 3, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 1, + "Freight": 2.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 12, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "ANATR", + "Company": "Ana Trujillo Emparedados y helados", + "ContactName": "Ana Trujillo", + "ContactTitle": "Owner", + "Address": "Avda. de la Constitución 2222", + "City": "México D.F.", + "PostalCode": 5021, + "Country": "Mexico", + "Phone": "(5) 555-4729", + "Fax": "(5) 555-3745", + "Orders": [ + { + "OrderID": 10926, + "EmployeeID": 4, + "OrderDate": "1998-03-04T00:00:00", + "RequiredDate": "1998-04-01T00:00:00", + "ShippedDate": "1998-03-11T00:00:00", + "ShipVia": 3, + "Freight": 39.92, + "ShipName": "Ana Trujillo Emparedados y helados", + "ShipAddress": "Avda. de la Constitución 2222", + "ShipCity": "México D.F.", + "ShipPostalCode": 5021, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", + "Orders": [ + { + "OrderID": 10927, + "EmployeeID": 4, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 19.79, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GALED", + "Company": "Galería del gastrónomo", + "ContactName": "Eduardo Saavedra", + "ContactTitle": "Marketing Manager", + "Address": "Rambla de Cataluña, 23", + "City": "Barcelona", + "PostalCode": 8022, + "Country": "Spain", + "Phone": "(93) 203 4560", + "Fax": "(93) 203 4561", + "Orders": [ + { + "OrderID": 10928, + "EmployeeID": 1, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 1.36, + "ShipName": "Galería del gastronómo", + "ShipAddress": "Rambla de Cataluña, 23", + "ShipCity": "Barcelona", + "ShipPostalCode": 8022, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 10929, + "EmployeeID": 6, + "OrderDate": "1998-03-05T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 1, + "Freight": 33.93, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 49, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 10930, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 15.55, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 36, + "Discount": 0 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 25, + "Discount": 0.2 + }, + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 30, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 10931, + "EmployeeID": 4, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-03-20T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 2, + "Freight": 13.6, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 42, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10932, + "EmployeeID": 8, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 134.64, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.1 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 14, + "Discount": 0.1 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "ISLAT", + "Company": "Island Trading", + "ContactName": "Helen Bennett", + "ContactTitle": "Marketing Manager", + "Address": "Garden House Crowther Way", + "City": "Cowes", + "Region": "Northeast", + "PostalCode": 22000, + "Country": "UK", + "Phone": "(198) 555-8888", + "Orders": [ + { + "OrderID": 10933, + "EmployeeID": 6, + "OrderDate": "1998-03-06T00:00:00", + "RequiredDate": "1998-04-03T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 3, + "Freight": 54.15, + "ShipName": "Island Trading", + "ShipAddress": "Garden House Crowther Way", + "ShipCity": "Cowes", + "ShipRegion": 40216, + "ShipPostalCode": 24000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 10934, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-12T00:00:00", + "ShipVia": 3, + "Freight": 32.01, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WELLI", + "Company": "Wellington Importadora", + "ContactName": "Paula Parente", + "ContactTitle": "Sales Manager", + "Address": "Rua do Mercado, 12", + "City": "Resende", + "Region": "SP", + "PostalCode": 8737, + "Country": "Brazil", + "Phone": "(14) 555-8122", + "Orders": [ + { + "OrderID": 10935, + "EmployeeID": 4, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 47.59, + "ShipName": "Wellington Importadora", + "ShipAddress": "Rua do Mercado, 12", + "ShipCity": "Resende", + "ShipRegion": "SP", + "ShipPostalCode": 8737, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 8, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 10936, + "EmployeeID": 3, + "OrderDate": "1998-03-09T00:00:00", + "RequiredDate": "1998-04-06T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 2, + "Freight": 33.68, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", + "Orders": [ + { + "OrderID": 10937, + "EmployeeID": 7, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-03-24T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 31.51, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10938, + "EmployeeID": 3, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 31.89, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 24, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 49, + "Discount": 0.25 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 35, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10939, + "EmployeeID": 2, + "OrderDate": "1998-03-10T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 2, + "Freight": 76.33, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 10940, + "EmployeeID": 8, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 3, + "Freight": 19.77, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10941, + "EmployeeID": 7, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 400.81, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 80, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 10942, + "EmployeeID": 9, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 3, + "Freight": 17.95, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 28, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 40000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 10943, + "EmployeeID": 4, + "OrderDate": "1998-03-11T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 2, + "Freight": 2.17, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 40000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 45000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10944, + "EmployeeID": 6, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-03-26T00:00:00", + "ShippedDate": "1998-03-13T00:00:00", + "ShipVia": 3, + "Freight": 52.92, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 36000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 5, + "Discount": 0.25 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 18, + "Discount": 0.25 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MORGK", + "Company": "Morgenstern Gesundkost", + "ContactName": "Alexander Feuer", + "ContactTitle": "Marketing Assistant", + "Address": "Heerstr. 22", + "City": "Leipzig", + "PostalCode": 4179, + "Country": "Germany", + "Phone": "0342-023176", + "Orders": [ + { + "OrderID": 10945, + "EmployeeID": 4, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-18T00:00:00", + "ShipVia": 1, + "Freight": 10.22, + "ShipName": "Morgenstern Gesundkost", + "ShipAddress": "Heerstr. 22", + "ShipCity": "Leipzig", + "ShipPostalCode": 4179, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10946, + "EmployeeID": 1, + "OrderDate": "1998-03-12T00:00:00", + "RequiredDate": "1998-04-09T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 2, + "Freight": 27.2, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 35000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 10947, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-16T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 13000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 10948, + "EmployeeID": 3, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-19T00:00:00", + "ShipVia": 3, + "Freight": 23.39, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 44000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10949, + "EmployeeID": 2, + "OrderDate": "1998-03-13T00:00:00", + "RequiredDate": "1998-04-10T00:00:00", + "ShippedDate": "1998-03-17T00:00:00", + "ShipVia": 3, + "Freight": 74.44, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 27000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAGAA", + "Company": "Magazzini Alimentari Riuniti", + "ContactName": "Giovanni Rovelli", + "ContactTitle": "Marketing Manager", + "Address": "Via Ludovico il Moro 22", + "City": "Bergamo", + "PostalCode": 24100, + "Country": "Italy", + "Phone": "035-640230", + "Fax": "035-640231", + "Orders": [ + { + "OrderID": 10950, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-13T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 2.5, + "ShipName": "Magazzini Alimentari Riuniti", + "ShipAddress": "Via Ludovico il Moro 22", + "ShipCity": "Bergamo", + "ShipPostalCode": 24100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 10951, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 2, + "Freight": 30.85, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 50, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", + "Orders": [ + { + "OrderID": 10952, + "EmployeeID": 1, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 1, + "Freight": 40.42, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 16, + "Discount": 0.06 + }, + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 21000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 10953, + "EmployeeID": 9, + "OrderDate": "1998-03-16T00:00:00", + "RequiredDate": "1998-03-30T00:00:00", + "ShippedDate": "1998-03-25T00:00:00", + "ShipVia": 2, + "Freight": 23.72, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 35000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 50, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 10954, + "EmployeeID": 5, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 1, + "Freight": 27.91, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 28, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 25, + "Discount": 0.16 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 24, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 25000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10955, + "EmployeeID": 8, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-14T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 3.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 47000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 12, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", + "Orders": [ + { + "OrderID": 10956, + "EmployeeID": 6, + "OrderDate": "1998-03-17T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-03-20T00:00:00", + "ShipVia": 2, + "Freight": 44.65, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 14, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10957, + "EmployeeID": 8, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 8, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", + "Orders": [ + { + "OrderID": 10958, + "EmployeeID": 7, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-15T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 49.56, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 10959, + "EmployeeID": 6, + "OrderDate": "1998-03-18T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 4.98, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 20, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10960, + "EmployeeID": 3, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-02T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 10961, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 1, + "Freight": 104.47, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 6, + "Discount": 0.06 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10962, + "EmployeeID": 8, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-23T00:00:00", + "ShipVia": 2, + "Freight": 275.79, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 77, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 9, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 44, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FURIB", + "Company": "Furia Bacalhau e Frutos do Mar", + "ContactName": "Lino Rodriguez", + "ContactTitle": "Sales Manager", + "Address": "Jardim das rosas n. 32", + "City": "Lisboa", + "PostalCode": 1675, + "Country": "Portugal", + "Phone": "(1) 354-2534", + "Fax": "(1) 354-2535", + "Orders": [ + { + "OrderID": 10963, + "EmployeeID": 9, + "OrderDate": "1998-03-19T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 3, + "Freight": 2.7, + "ShipName": "Furia Bacalhau e Frutos do Mar", + "ShipAddress": "Jardim das rosas n. 32", + "ShipCity": "Lisboa", + "ShipPostalCode": 1675, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", + "Orders": [ + { + "OrderID": 10964, + "EmployeeID": 3, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-24T00:00:00", + "ShipVia": 2, + "Freight": 87.38, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 10965, + "EmployeeID": 6, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 3, + "Freight": 144.38, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 16, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Orders": [ + { + "OrderID": 10966, + "EmployeeID": 4, + "OrderDate": "1998-03-20T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 27.19, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 37, + "UnitPrice": 26, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 12, + "Discount": 0.16 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "TOMSP", + "Company": "Toms Spezialitäten", + "ContactName": "Karin Josephs", + "ContactTitle": "Marketing Manager", + "Address": "Luisenstr. 48", + "City": "Münster", + "PostalCode": 44087, + "Country": "Germany", + "Phone": "0251-031259", + "Fax": "0251-035695", + "Orders": [ + { + "OrderID": 10967, + "EmployeeID": 2, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 62.22, + "ShipName": "Toms Spezialitäten", + "ShipAddress": "Luisenstr. 48", + "ShipCity": "Münster", + "ShipPostalCode": 44087, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10968, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-04-01T00:00:00", + "ShipVia": 3, + "Freight": 74.6, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", + "Orders": [ + { + "OrderID": 10969, + "EmployeeID": 1, + "OrderDate": "1998-03-23T00:00:00", + "RequiredDate": "1998-04-20T00:00:00", + "ShippedDate": "1998-03-30T00:00:00", + "ShipVia": 2, + "Freight": 0.21, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOLID", + "Company": "Bólido Comidas preparadas", + "ContactName": "Martín Sommer", + "ContactTitle": "Owner", + "Address": "C/ Araquil, 67", + "City": "Madrid", + "PostalCode": 28023, + "Country": "Spain", + "Phone": "(91) 555 22 82", + "Fax": "(91) 555 91 99", + "Orders": [ + { + "OrderID": 10970, + "EmployeeID": 9, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-07T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 1, + "Freight": 16.16, + "ShipName": "Bólido Comidas preparadas", + "ShipAddress": "C/ Araquil, 67", + "ShipCity": "Madrid", + "ShipPostalCode": 28023, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 40, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "FRANR", + "Company": "France restauration", + "ContactName": "Carine Schmitt", + "ContactTitle": "Marketing Manager", + "Address": "54, rue Royale", + "City": "Nantes", + "PostalCode": 44000, + "Country": "France", + "Phone": "40.32.21.21", + "Fax": "40.32.21.20", + "Orders": [ + { + "OrderID": 10971, + "EmployeeID": 2, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 121.82, + "ShipName": "France restauration", + "ShipAddress": "54, rue Royale", + "ShipCity": "Nantes", + "ShipPostalCode": 44000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LACOR", + "Company": "La corne d'abondance", + "ContactName": "Daniel Tonini", + "ContactTitle": "Sales Representative", + "Address": "67, avenue de l'Europe", + "City": "Versailles", + "PostalCode": 78000, + "Country": "France", + "Phone": "30.59.84.10", + "Fax": "30.59.85.11", + "Orders": [ + { + "OrderID": 10972, + "EmployeeID": 4, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-26T00:00:00", + "ShipVia": 2, + "Freight": 0.02, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 7, + "Discount": 0 + } + ] + }, + { + "OrderID": 10973, + "EmployeeID": 6, + "OrderDate": "1998-03-24T00:00:00", + "RequiredDate": "1998-04-21T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 2, + "Freight": 15.17, + "ShipName": "La corne d'abondance", + "ShipAddress": "67, avenue de l'Europe", + "ShipCity": "Versailles", + "ShipPostalCode": 78000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 5, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPLIR", + "Company": "Split Rail Beer & 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", + "Orders": [ + { + "OrderID": 10974, + "EmployeeID": 3, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-08T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 12.96, + "ShipName": "Split Rail Beer & Ale", + "ShipAddress": "P.O. Box 555", + "ShipCity": "Lander", + "ShipRegion": "WY", + "ShipPostalCode": 82520, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 13000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10975, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-04-22T00:00:00", + "ShippedDate": "1998-03-27T00:00:00", + "ShipVia": 3, + "Freight": 32.27, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 40000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 16, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 10976, + "EmployeeID": 1, + "OrderDate": "1998-03-25T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 11000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10977, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 208.5, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 29000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 47, + "UnitPrice": 9.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 27000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", + "Orders": [ + { + "OrderID": 10978, + "EmployeeID": 9, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 2, + "Freight": 32.82, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 31000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 6, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10979, + "EmployeeID": 8, + "OrderDate": "1998-03-26T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-03-31T00:00:00", + "ShipVia": 2, + "Freight": 353.07, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 18, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 27, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 50000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10980, + "EmployeeID": 4, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 1, + "Freight": 1.26, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 40, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 10981, + "EmployeeID": 1, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 2, + "Freight": 193.37, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 60, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 27000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 10982, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 1, + "Freight": 14.01, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 49000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 10983, + "EmployeeID": 2, + "OrderDate": "1998-03-27T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 2, + "Freight": 657.54, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 84, + "Discount": 0.16 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 15, + "Discount": 0 + } + ] + }, + { + "OrderID": 10984, + "EmployeeID": 1, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 211.22, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 55, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 10985, + "EmployeeID": 2, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 91.51, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 36, + "Discount": 0.1 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0.1 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 35, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "OCEAN", + "Company": "Océano Atlántico Ltda.", + "ContactName": "Yvonne Moncada", + "ContactTitle": "Sales Agent", + "Address": "Ing. Gustavo Moncada 8585 Piso 20-A", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5333", + "Fax": "(1) 135-5535", + "Orders": [ + { + "OrderID": 10986, + "EmployeeID": 8, + "OrderDate": "1998-03-30T00:00:00", + "RequiredDate": "1998-04-27T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 217.86, + "ShipName": "Océano Atlántico Ltda.", + "ShipAddress": "Ing. Gustavo Moncada 8585 Piso 20-A", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 32000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", + "Orders": [ + { + "OrderID": 10987, + "EmployeeID": 8, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 1, + "Freight": 185.48, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 30000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 10988, + "EmployeeID": 3, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 61.14, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 40, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "QUEDE", + "Company": "Que Delícia", + "ContactName": "Bernardo Batista", + "ContactTitle": "Accounting Manager", + "Address": "Rua da Panificadora, 12", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-4252", + "Fax": "(21) 555-4545", + "Orders": [ + { + "OrderID": 10989, + "EmployeeID": 2, + "OrderDate": "1998-03-31T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-02T00:00:00", + "ShipVia": 1, + "Freight": 34.76, + "ShipName": "Que Delícia", + "ShipAddress": "Rua da Panificadora, 12", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 10990, + "EmployeeID": 2, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 3, + "Freight": 117.61, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 65, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 60, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 65, + "Discount": 0.16 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 66, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10991, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-07T00:00:00", + "ShipVia": 1, + "Freight": 38.51, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 50, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 20, + "Discount": 0.2 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 90, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "THEBI", + "Company": "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", + "Orders": [ + { + "OrderID": 10992, + "EmployeeID": 1, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-03T00:00:00", + "ShipVia": 3, + "Freight": 4.27, + "ShipName": "The Big Cheese", + "ShipAddress": "89 Jefferson Way Suite 2", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97201, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 36000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 10993, + "EmployeeID": 7, + "OrderDate": "1998-04-01T00:00:00", + "RequiredDate": "1998-04-29T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 3, + "Freight": 8.81, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 15000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 50, + "Discount": 0.25 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 35, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "VAFFE", + "Company": "Vaffeljernet", + "ContactName": "Palle Ibsen", + "ContactTitle": "Sales Manager", + "Address": "Smagsloget 45", + "City": "Århus", + "PostalCode": 8200, + "Country": "Denmark", + "Phone": "86 21 32 43", + "Fax": "86 22 33 44", + "Orders": [ + { + "OrderID": 10994, + "EmployeeID": 2, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-16T00:00:00", + "ShippedDate": "1998-04-09T00:00:00", + "ShipVia": 3, + "Freight": 65.53, + "ShipName": "Vaffeljernet", + "ShipAddress": "Smagsloget 45", + "ShipCity": "Århus", + "ShipPostalCode": 8200, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 18, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", + "Orders": [ + { + "OrderID": 10995, + "EmployeeID": 1, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-06T00:00:00", + "ShipVia": 3, + "Freight": 46, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 10996, + "EmployeeID": 4, + "OrderDate": "1998-04-02T00:00:00", + "RequiredDate": "1998-04-30T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 1.12, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 10997, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 50, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 20, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 15000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 10998, + "EmployeeID": 8, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-04-17T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 2, + "Freight": 20.31, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 74, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 10999, + "EmployeeID": 6, + "OrderDate": "1998-04-03T00:00:00", + "RequiredDate": "1998-05-01T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 2, + "Freight": 96.35, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 21, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 11000, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 3, + "Freight": 55.12, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 45000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 11001, + "EmployeeID": 2, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-14T00:00:00", + "ShipVia": 2, + "Freight": 197.3, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 14000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 22, + "UnitPrice": 21, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 11002, + "EmployeeID": 4, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 1, + "Freight": 141.16, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 56, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 15, + "Discount": 0.16 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 24, + "Discount": 0.16 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 40, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "THECR", + "Company": "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", + "Orders": [ + { + "OrderID": 11003, + "EmployeeID": 3, + "OrderDate": "1998-04-06T00:00:00", + "RequiredDate": "1998-05-04T00:00:00", + "ShippedDate": "1998-04-08T00:00:00", + "ShipVia": 3, + "Freight": 14.91, + "ShipName": "The Cracker Box", + "ShipAddress": "55 Grizzly Peak Rd.", + "ShipCity": "Butte", + "ShipRegion": "MT", + "ShipPostalCode": 59801, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "MAISD", + "Company": "Maison Dewey", + "ContactName": "Catherine Dewey", + "ContactTitle": "Sales Agent", + "Address": "Rue Joseph-Bens 532", + "City": "Bruxelles", + "PostalCode": 20000, + "Country": "Belgium", + "Phone": "(02) 201 24 67", + "Fax": "(02) 201 24 68", + "Orders": [ + { + "OrderID": 11004, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 44.84, + "ShipName": "Maison Dewey", + "ShipAddress": "Rue Joseph-Bens 532", + "ShipCity": "Bruxelles", + "ShipPostalCode": 43000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 6, + "Discount": 0 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WILMK", + "Company": "Wilman Kala", + "ContactName": "Matti Karttunen", + "ContactTitle": "Owner/Marketing Assistant", + "Address": "Keskuskatu 45", + "City": "Helsinki", + "PostalCode": 21240, + "Country": "Finland", + "Phone": "90-224 8858", + "Fax": "90-224 8858", + "Orders": [ + { + "OrderID": 11005, + "EmployeeID": 2, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 0.75, + "ShipName": "Wilman Kala", + "ShipAddress": "Keskuskatu 45", + "ShipCity": "Helsinki", + "ShipPostalCode": 21240, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 11006, + "EmployeeID": 3, + "OrderDate": "1998-04-07T00:00:00", + "RequiredDate": "1998-05-05T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 2, + "Freight": 25.19, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 2, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "PRINI", + "Company": "Princesa Isabel Vinhos", + "ContactName": "Isabel de Castro", + "ContactTitle": "Sales Representative", + "Address": "Estrada da saúde n. 58", + "City": "Lisboa", + "PostalCode": 1756, + "Country": "Portugal", + "Phone": "(1) 356-5634", + "Orders": [ + { + "OrderID": 11007, + "EmployeeID": 8, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 202.24, + "ShipName": "Princesa Isabel Vinhos", + "ShipAddress": "Estrada da saúde n. 58", + "ShipCity": "Lisboa", + "ShipPostalCode": 1756, + "ShipCountry": "Portugal", + "OrderDetails": [ + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 14, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 11008, + "EmployeeID": 7, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShipVia": 3, + "Freight": 79.46, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 70, + "Discount": 0.06 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 90, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 21, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 11009, + "EmployeeID": 2, + "OrderDate": "1998-04-08T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 59.11, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 18, + "Discount": 0.25 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 11010, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 2, + "Freight": 28.71, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ALFKI", + "Company": "Alfreds Futterkiste", + "ContactName": "Maria Anders", + "ContactTitle": "Sales Representative", + "Address": "Obere Str. 57", + "City": "Berlin", + "PostalCode": 12209, + "Country": "Germany", + "Phone": "030-0074321", + "Fax": "030-0076545", + "Orders": [ + { + "OrderID": 11011, + "EmployeeID": 3, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 1, + "Freight": 1.21, + "ShipName": "Alfred's Futterkiste", + "ShipAddress": "Obere Str. 57", + "ShipCity": "Berlin", + "ShipPostalCode": 12209, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 58, + "UnitPrice": 13.25, + "Quantity": 40, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANK", + "Company": "Frankenversand", + "ContactName": "Peter Franken", + "ContactTitle": "Marketing Manager", + "Address": "Berliner Platz 43", + "City": "München", + "PostalCode": 80805, + "Country": "Germany", + "Phone": "089-0877310", + "Fax": "089-0877451", + "Orders": [ + { + "OrderID": 11012, + "EmployeeID": 1, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-04-23T00:00:00", + "ShippedDate": "1998-04-17T00:00:00", + "ShipVia": 3, + "Freight": 242.95, + "ShipName": "Frankenversand", + "ShipAddress": "Berliner Platz 43", + "ShipCity": "München", + "ShipPostalCode": 80805, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 50, + "Discount": 0.06 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 36, + "Discount": 0.06 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 60, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "ROMEY", + "Company": "Romero y tomillo", + "ContactName": "Alejandra Camino", + "ContactTitle": "Accounting Manager", + "Address": "Gran Vía, 1", + "City": "Madrid", + "PostalCode": 28001, + "Country": "Spain", + "Phone": "(91) 745 6200", + "Fax": "(91) 745 6210", + "Orders": [ + { + "OrderID": 11013, + "EmployeeID": 2, + "OrderDate": "1998-04-09T00:00:00", + "RequiredDate": "1998-05-07T00:00:00", + "ShippedDate": "1998-04-10T00:00:00", + "ShipVia": 1, + "Freight": 32.99, + "ShipName": "Romero y tomillo", + "ShipAddress": "Gran Vía, 1", + "ShipCity": "Madrid", + "ShipPostalCode": 28001, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 45, + "UnitPrice": 9.5, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 11014, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-15T00:00:00", + "ShipVia": 3, + "Freight": 23.6, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 28, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "SANTG", + "Company": "Santé Gourmet", + "ContactName": "Jonas Bergulfsen", + "ContactTitle": "Owner", + "Address": "Erling Skakkes gate 78", + "City": "Stavern", + "PostalCode": 4110, + "Country": "Norway", + "Phone": "07-98 92 35", + "Fax": "07-98 92 47", + "Orders": [ + { + "OrderID": 11015, + "EmployeeID": 2, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-04-24T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 4.62, + "ShipName": "Santé Gourmet", + "ShipAddress": "Erling Skakkes gate 78", + "ShipCity": "Stavern", + "ShipPostalCode": 4110, + "ShipCountry": "Norway", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 18, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "AROUT", + "Company": "Around the Horn", + "ContactName": "Thomas Hardy", + "ContactTitle": "Sales Representative", + "Address": "120 Hanover Sq.", + "City": "London", + "PostalCode": 49000, + "Country": "UK", + "Phone": "(171) 555-7788", + "Fax": "(171) 555-6750", + "Orders": [ + { + "OrderID": 11016, + "EmployeeID": 9, + "OrderDate": "1998-04-10T00:00:00", + "RequiredDate": "1998-05-08T00:00:00", + "ShippedDate": "1998-04-13T00:00:00", + "ShipVia": 2, + "Freight": 33.8, + "ShipName": "Around the Horn", + "ShipAddress": "Brook Farm Stratford St. Mary", + "ShipCity": "Colchester", + "ShipRegion": "Essex", + "ShipPostalCode": 11000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 16, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 11017, + "EmployeeID": 9, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 2, + "Freight": 754.26, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 110, + "Discount": 0 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LONEP", + "Company": "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", + "Orders": [ + { + "OrderID": 11018, + "EmployeeID": 4, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 11.65, + "ShipName": "Lonesome Pine Restaurant", + "ShipAddress": "89 Chiaroscuro Rd.", + "ShipCity": "Portland", + "ShipRegion": "OR", + "ShipPostalCode": 97219, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 5, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RANCH", + "Company": "Rancho grande", + "ContactName": "Sergio Gutiérrez", + "ContactTitle": "Sales Representative", + "Address": "Av. del Libertador 900", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 123-5555", + "Fax": "(1) 123-5556", + "Orders": [ + { + "OrderID": 11019, + "EmployeeID": 6, + "OrderDate": "1998-04-13T00:00:00", + "RequiredDate": "1998-05-11T00:00:00", + "ShipVia": 3, + "Freight": 3.17, + "ShipName": "Rancho grande", + "ShipAddress": "Av. del Libertador 900", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "OTTIK", + "Company": "Ottilies Käseladen", + "ContactName": "Henriette Pfalzheim", + "ContactTitle": "Owner", + "Address": "Mehrheimerstr. 369", + "City": "Köln", + "PostalCode": 50739, + "Country": "Germany", + "Phone": "0221-0644327", + "Fax": "0221-0765721", + "Orders": [ + { + "OrderID": 11020, + "EmployeeID": 2, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-16T00:00:00", + "ShipVia": 2, + "Freight": 43.3, + "ShipName": "Ottilies Käseladen", + "ShipAddress": "Mehrheimerstr. 369", + "ShipCity": "Köln", + "ShipPostalCode": 50739, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 24, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "QUICK", + "Company": "QUICK-Stop", + "ContactName": "Horst Kloss", + "ContactTitle": "Accounting Manager", + "Address": "Taucherstraße 10", + "City": "Cunewalde", + "PostalCode": 1307, + "Country": "Germany", + "Phone": "0372-035188", + "Orders": [ + { + "OrderID": 11021, + "EmployeeID": 3, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-04-21T00:00:00", + "ShipVia": 1, + "Freight": 297.18, + "ShipName": "QUICK-Stop", + "ShipAddress": "Taucherstraße 10", + "ShipCity": "Cunewalde", + "ShipPostalCode": 1307, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 11, + "Discount": 0.25 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 63, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 44, + "Discount": 0.25 + }, + { + "ProductID": 72, + "UnitPrice": 34.8, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 11022, + "EmployeeID": 9, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 6.27, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BSBEV", + "Company": "B's Beverages", + "ContactName": "Victoria Ashworth", + "ContactTitle": "Sales Representative", + "Address": "Fauntleroy Circus", + "City": "London", + "PostalCode": 15000, + "Country": "UK", + "Phone": "(171) 555-1212", + "Orders": [ + { + "OrderID": 11023, + "EmployeeID": 1, + "OrderDate": "1998-04-14T00:00:00", + "RequiredDate": "1998-04-28T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 123.83, + "ShipName": "B's Beverages", + "ShipAddress": "Fauntleroy Circus", + "ShipCity": "London", + "ShipPostalCode": 12000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 21000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", + "Orders": [ + { + "OrderID": 11024, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 74.36, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 28000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 26, + "UnitPrice": 31.23, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 65, + "UnitPrice": 21.05, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WARTH", + "Company": "Wartian Herkku", + "ContactName": "Pirkko Koskitalo", + "ContactTitle": "Accounting Manager", + "Address": "Torikatu 38", + "City": "Oulu", + "PostalCode": 90110, + "Country": "Finland", + "Phone": "981-443655", + "Fax": "981-443655", + "Orders": [ + { + "OrderID": 11025, + "EmployeeID": 6, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 3, + "Freight": 29.17, + "ShipName": "Wartian Herkku", + "ShipAddress": "Torikatu 38", + "ShipCity": "Oulu", + "ShipPostalCode": 90110, + "ShipCountry": "Finland", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0.1 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 20, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", + "Orders": [ + { + "OrderID": 11026, + "EmployeeID": 4, + "OrderDate": "1998-04-15T00:00:00", + "RequiredDate": "1998-05-13T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 1, + "Freight": 47.09, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 27000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 11027, + "EmployeeID": 1, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-20T00:00:00", + "ShipVia": 1, + "Freight": 52.52, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 14000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 30, + "Discount": 0.25 + }, + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 21, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "KOENE", + "Company": "Königlich Essen", + "ContactName": "Philip Cramer", + "ContactTitle": "Sales Associate", + "Address": "Maubelstr. 90", + "City": "Brandenburg", + "PostalCode": 14776, + "Country": "Germany", + "Phone": "0555-09876", + "Orders": [ + { + "OrderID": 11028, + "EmployeeID": 2, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 1, + "Freight": 29.59, + "ShipName": "Königlich Essen", + "ShipAddress": "Maubelstr. 90", + "ShipCity": "Brandenburg", + "ShipPostalCode": 14776, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Orders": [ + { + "OrderID": 11029, + "EmployeeID": 4, + "OrderDate": "1998-04-16T00:00:00", + "RequiredDate": "1998-05-14T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 47.84, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 56, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 11030, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 2, + "Freight": 830.75, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 100, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 70, + "Discount": 0 + }, + { + "ProductID": 29, + "UnitPrice": 123.79, + "Quantity": 60, + "Discount": 0.25 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 100, + "Discount": 0.25 + } + ] + }, + { + "OrderID": 11031, + "EmployeeID": 6, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 227.22, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 45, + "Discount": 0 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 80, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 16, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 11032, + "EmployeeID": 2, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 606.19, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 36, + "UnitPrice": 19, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 38, + "UnitPrice": 263.5, + "Quantity": 25, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 11033, + "EmployeeID": 7, + "OrderDate": "1998-04-17T00:00:00", + "RequiredDate": "1998-05-15T00:00:00", + "ShippedDate": "1998-04-23T00:00:00", + "ShipVia": 3, + "Freight": 84.74, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 70, + "Discount": 0.1 + }, + { + "ProductID": 69, + "UnitPrice": 36, + "Quantity": 36, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "OLDWO", + "Company": "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", + "Orders": [ + { + "OrderID": 11034, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 40.32, + "ShipName": "Old World Delicatessen", + "ShipAddress": "2743 Bering St.", + "ShipCity": "Anchorage", + "ShipRegion": "AK", + "ShipPostalCode": 99508, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 15, + "Discount": 0.1 + }, + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 6, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 11035, + "EmployeeID": 2, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 0.17, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 42, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", + "Orders": [ + { + "OrderID": 11036, + "EmployeeID": 8, + "OrderDate": "1998-04-20T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-04-22T00:00:00", + "ShipVia": 3, + "Freight": 149.47, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 7, + "Discount": 0 + }, + { + "ProductID": 59, + "UnitPrice": 55, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GODOS", + "Company": "Godos Cocina Típica", + "ContactName": "José Pedro Freyre", + "ContactTitle": "Sales Manager", + "Address": "C/ Romero, 33", + "City": "Sevilla", + "PostalCode": 41101, + "Country": "Spain", + "Phone": "(95) 555 82 82", + "Orders": [ + { + "OrderID": 11037, + "EmployeeID": 7, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-27T00:00:00", + "ShipVia": 1, + "Freight": 3.2, + "ShipName": "Godos Cocina Típica", + "ShipAddress": "C/ Romero, 33", + "ShipCity": "Sevilla", + "ShipPostalCode": 41101, + "ShipCountry": "Spain", + "OrderDetails": [ + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SUPRD", + "Company": "Suprêmes délices", + "ContactName": "Pascale Cartrain", + "ContactTitle": "Accounting Manager", + "Address": "Boulevard Tirou, 255", + "City": "Charleroi", + "PostalCode": 6000, + "Country": "Belgium", + "Phone": "(071) 23 67 22 20", + "Fax": "(071) 23 67 22 21", + "Orders": [ + { + "OrderID": 11038, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 2, + "Freight": 29.59, + "ShipName": "Suprêmes délices", + "ShipAddress": "Boulevard Tirou, 255", + "ShipCity": "Charleroi", + "ShipPostalCode": 6000, + "ShipCountry": "Belgium", + "OrderDetails": [ + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 5, + "Discount": 0.2 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 71, + "UnitPrice": 21.5, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LINOD", + "Company": "LINO-Delicateses", + "ContactName": "Felipe Izquierdo", + "ContactTitle": "Owner", + "Address": "Ave. 5 de Mayo Porlamar", + "City": "Sao Paulo", + "Region": "Nueva Esparta", + "PostalCode": 4980, + "Country": "Venezuela", + "Phone": "(8) 34-56-12", + "Fax": "(8) 34-93-93", + "Orders": [ + { + "OrderID": 11039, + "EmployeeID": 1, + "OrderDate": "1998-04-21T00:00:00", + "RequiredDate": "1998-05-19T00:00:00", + "ShipVia": 2, + "Freight": 65, + "ShipName": "LINO-Delicateses", + "ShipAddress": "Ave. 5 de Mayo Porlamar", + "ShipCity": "Lyon", + "ShipRegion": "Nueva Esparta", + "ShipPostalCode": 4980, + "ShipCountry": "Venezuela", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 24, + "Discount": 0 + }, + { + "ProductID": 49, + "UnitPrice": 20, + "Quantity": 60, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 28, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 11040, + "EmployeeID": 4, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShipVia": 3, + "Freight": 18.84, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "CHOPS", + "Company": "Chop-suey Chinese", + "ContactName": "Yang Wang", + "ContactTitle": "Owner", + "Address": "Hauptstr. 29", + "City": "Bern", + "PostalCode": 3012, + "Country": "Switzerland", + "Phone": "0452-076545", + "Orders": [ + { + "OrderID": 11041, + "EmployeeID": 3, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-28T00:00:00", + "ShipVia": 2, + "Freight": 48.22, + "ShipName": "Chop-suey Chinese", + "ShipAddress": "Hauptstr. 31", + "ShipCity": "Bern", + "ShipPostalCode": 3012, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 63, + "UnitPrice": 43.9, + "Quantity": 30, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "COMMI", + "Company": "Comércio Mineiro", + "ContactName": "Pedro Afonso", + "ContactTitle": "Sales Associate", + "Address": "Av. dos Lusíadas, 23", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5432, + "Country": "Brazil", + "Phone": "(11) 555-7647", + "Orders": [ + { + "OrderID": 11042, + "EmployeeID": 2, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-06T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 29.99, + "ShipName": "Comércio Mineiro", + "ShipAddress": "Av. dos Lusíadas, 23", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5432, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 44, + "UnitPrice": 19.45, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SPECD", + "Company": "Spécialités du monde", + "ContactName": "Dominique Perrier", + "ContactTitle": "Marketing Manager", + "Address": "25, rue Lauriston", + "City": "Paris", + "PostalCode": 75016, + "Country": "France", + "Phone": "(1) 47.55.60.10", + "Fax": "(1) 47.55.60.20", + "Orders": [ + { + "OrderID": 11043, + "EmployeeID": 5, + "OrderDate": "1998-04-22T00:00:00", + "RequiredDate": "1998-05-20T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 8.8, + "ShipName": "Spécialités du monde", + "ShipAddress": "25, rue Lauriston", + "ShipCity": "Paris", + "ShipPostalCode": 75016, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WOLZA", + "Company": "Wolski Zajazd", + "ContactName": "Zbyszek Piestrzeniewicz", + "ContactTitle": "Owner", + "Address": "ul. Filtrowa 68", + "City": "Warszawa", + "PostalCode": 15000, + "Country": "Poland", + "Phone": "(26) 642-7012", + "Fax": "(26) 642-7012", + "Orders": [ + { + "OrderID": 11044, + "EmployeeID": 4, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 8.72, + "ShipName": "Wolski Zajazd", + "ShipAddress": "ul. Filtrowa 68", + "ShipCity": "Warszawa", + "ShipPostalCode": 12000, + "ShipCountry": "Poland", + "OrderDetails": [ + { + "ProductID": 62, + "UnitPrice": 49.3, + "Quantity": 12, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 26000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 11045, + "EmployeeID": 6, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShipVia": 2, + "Freight": 70.58, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 46000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 24, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "WANDK", + "Company": "Die Wandernde Kuh", + "ContactName": "Rita Müller", + "ContactTitle": "Sales Representative", + "Address": "Adenauerallee 900", + "City": "Stuttgart", + "PostalCode": 70563, + "Country": "Germany", + "Phone": "0711-020361", + "Fax": "0711-035428", + "Orders": [ + { + "OrderID": 11046, + "EmployeeID": 8, + "OrderDate": "1998-04-23T00:00:00", + "RequiredDate": "1998-05-21T00:00:00", + "ShippedDate": "1998-04-24T00:00:00", + "ShipVia": 2, + "Freight": 71.64, + "ShipName": "Die Wandernde Kuh", + "ShipAddress": "Adenauerallee 900", + "ShipCity": "Stuttgart", + "ShipPostalCode": 70563, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 20, + "Discount": 0.06 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 35, + "UnitPrice": 18, + "Quantity": 18, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 45000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", + "Orders": [ + { + "OrderID": 11047, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 46.62, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 42000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 25, + "Discount": 0.25 + }, + { + "ProductID": 5, + "UnitPrice": 21.35, + "Quantity": 30, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "BOTTM", + "Company": "Bottom-Dollar Markets", + "ContactName": "Elizabeth Lincoln", + "ContactTitle": "Accounting Manager", + "Address": "23 Tsawassen Blvd.", + "City": "Tsawassen", + "Region": "BC", + "PostalCode": 24000, + "Country": "Canada", + "Phone": "(604) 555-4729", + "Fax": "(604) 555-3745", + "Orders": [ + { + "OrderID": 11048, + "EmployeeID": 7, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-04-30T00:00:00", + "ShipVia": 3, + "Freight": 24.12, + "ShipName": "Bottom-Dollar Markets", + "ShipAddress": "23 Tsawassen Blvd.", + "ShipCity": "Tsawassen", + "ShipRegion": "BC", + "ShipPostalCode": 41000, + "ShipCountry": "Canada", + "OrderDetails": [ + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 42, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GOURL", + "Company": "Gourmet Lanchonetes", + "ContactName": "André Fonseca", + "ContactTitle": "Sales Associate", + "Address": "Av. Brasil, 442", + "City": "Campinas", + "Region": "SP", + "PostalCode": 4876, + "Country": "Brazil", + "Phone": "(11) 555-9482", + "Orders": [ + { + "OrderID": 11049, + "EmployeeID": 3, + "OrderDate": "1998-04-24T00:00:00", + "RequiredDate": "1998-05-22T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 8.34, + "ShipName": "Gourmet Lanchonetes", + "ShipAddress": "Av. Brasil, 442", + "ShipCity": "Campinas", + "ShipRegion": "SP", + "ShipPostalCode": 4876, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 4, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "FOLKO", + "Company": "Folk och fä HB", + "ContactName": "Maria Larsson", + "ContactTitle": "Owner", + "Address": "Åkergatan 24", + "City": "Bräcke", + "PostalCode": 46000, + "Country": "Sweden", + "Phone": "0695-34 67 21", + "Orders": [ + { + "OrderID": 11050, + "EmployeeID": 8, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "ShipVia": 2, + "Freight": 59.41, + "ShipName": "Folk och fä HB", + "ShipAddress": "Åkergatan 24", + "ShipCity": "Bräcke", + "ShipPostalCode": 19000, + "ShipCountry": "Sweden", + "OrderDetails": [ + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 50, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "LAMAI", + "Company": "La maison d'Asie", + "ContactName": "Annette Roulet", + "ContactTitle": "Sales Manager", + "Address": "1 rue Alsace-Lorraine", + "City": "Toulouse", + "PostalCode": 31000, + "Country": "France", + "Phone": "61.77.61.10", + "Fax": "61.77.61.11", + "Orders": [ + { + "OrderID": 11051, + "EmployeeID": 7, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShipVia": 3, + "Freight": 2.79, + "ShipName": "La maison d'Asie", + "ShipAddress": "1 rue Alsace-Lorraine", + "ShipCity": "Toulouse", + "ShipPostalCode": 31000, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 10, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "HANAR", + "Company": "Hanari Carnes", + "ContactName": "Mario Pontes", + "ContactTitle": "Accounting Manager", + "Address": "Rua do Paço, 67", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 5454, + "Country": "Brazil", + "Phone": "(21) 555-0091", + "Fax": "(21) 555-8765", + "Orders": [ + { + "OrderID": 11052, + "EmployeeID": 3, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 1, + "Freight": 67.26, + "ShipName": "Hanari Carnes", + "ShipAddress": "Rua do Paço, 67", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 5454, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 30, + "Discount": 0.2 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 10, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "PICCO", + "Company": "Piccolo und mehr", + "ContactName": "Georg Pipps", + "ContactTitle": "Sales Manager", + "Address": "Geislweg 14", + "City": "Salzburg", + "PostalCode": 5020, + "Country": "Austria", + "Phone": "6562-9722", + "Fax": "6562-9723", + "Orders": [ + { + "OrderID": 11053, + "EmployeeID": 2, + "OrderDate": "1998-04-27T00:00:00", + "RequiredDate": "1998-05-25T00:00:00", + "ShippedDate": "1998-04-29T00:00:00", + "ShipVia": 2, + "Freight": 53.05, + "ShipName": "Piccolo und mehr", + "ShipAddress": "Geislweg 14", + "ShipCity": "Salzburg", + "ShipPostalCode": 5020, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 18, + "UnitPrice": 62.5, + "Quantity": 35, + "Discount": 0.2 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 25, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "CACTU", + "Company": "Cactus Comidas para llevar", + "ContactName": "Patricio Simpson", + "ContactTitle": "Sales Agent", + "Address": "Cerrito 333", + "City": "Buenos Aires", + "PostalCode": 1010, + "Country": "Argentina", + "Phone": "(1) 135-5555", + "Fax": "(1) 135-4892", + "Orders": [ + { + "OrderID": 11054, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShipVia": 1, + "Freight": 0.33, + "ShipName": "Cactus Comidas para llevar", + "ShipAddress": "Cerrito 333", + "ShipCity": "Buenos Aires", + "ShipPostalCode": 1010, + "ShipCountry": "Argentina", + "OrderDetails": [ + { + "ProductID": 33, + "UnitPrice": 2.5, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 67, + "UnitPrice": 14, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "HILAA", + "Company": "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", + "Orders": [ + { + "OrderID": 11055, + "EmployeeID": 7, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-26T00:00:00", + "ShippedDate": "1998-05-05T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 25, + "UnitPrice": 14, + "Quantity": 15, + "Discount": 0 + }, + { + "ProductID": 51, + "UnitPrice": 53, + "Quantity": 20, + "Discount": 0 + }, + { + "ProductID": 57, + "UnitPrice": 19.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "EASTC", + "Company": "Eastern Connection", + "ContactName": "Ann Devon", + "ContactTitle": "Sales Agent", + "Address": "35 King George", + "City": "London", + "PostalCode": 11000, + "Country": "UK", + "Phone": "(171) 555-0297", + "Fax": "(171) 555-3373", + "Orders": [ + { + "OrderID": 11056, + "EmployeeID": 8, + "OrderDate": "1998-04-28T00:00:00", + "RequiredDate": "1998-05-12T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 2, + "Freight": 278.96, + "ShipName": "Eastern Connection", + "ShipAddress": "35 King George", + "ShipCity": "London", + "ShipPostalCode": 39000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 35, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 50, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "NORTS", + "Company": "North/South", + "ContactName": "Simon Crowther", + "ContactTitle": "Sales Associate", + "Address": "South House 300 Queensbridge", + "City": "London", + "PostalCode": 16000, + "Country": "UK", + "Phone": "(171) 555-7733", + "Fax": "(171) 555-2530", + "Orders": [ + { + "OrderID": 11057, + "EmployeeID": 3, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShippedDate": "1998-05-01T00:00:00", + "ShipVia": 3, + "Freight": 4.13, + "ShipName": "North/South", + "ShipAddress": "South House 300 Queensbridge", + "ShipCity": "London", + "ShipPostalCode": 11000, + "ShipCountry": "UK", + "OrderDetails": [ + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 3, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "BLAUS", + "Company": "Blauer See Delikatessen", + "ContactName": "Hanna Moos", + "ContactTitle": "Sales Representative", + "Address": "Forsterstr. 57", + "City": "Mannheim", + "PostalCode": 68306, + "Country": "Germany", + "Phone": "0621-08460", + "Fax": "0621-08924", + "Orders": [ + { + "OrderID": 11058, + "EmployeeID": 9, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-05-27T00:00:00", + "ShipVia": 3, + "Freight": 31.14, + "ShipName": "Blauer See Delikatessen", + "ShipAddress": "Forsterstr. 57", + "ShipCity": "Mannheim", + "ShipPostalCode": 68306, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 21, + "UnitPrice": 10, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 21, + "Discount": 0 + }, + { + "ProductID": 61, + "UnitPrice": 28.5, + "Quantity": 4, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "RICAR", + "Company": "Ricardo Adocicados", + "ContactName": "Janete Limeira", + "ContactTitle": "Sales Associate", + "Address": "Av. Copacabana, 267", + "City": "Sao Paulo", + "Region": "RJ", + "PostalCode": 2389, + "Country": "Brazil", + "Phone": "(21) 555-3412", + "Orders": [ + { + "OrderID": 11059, + "EmployeeID": 2, + "OrderDate": "1998-04-29T00:00:00", + "RequiredDate": "1998-06-10T00:00:00", + "ShipVia": 2, + "Freight": 85.8, + "ShipName": "Ricardo Adocicados", + "ShipAddress": "Av. Copacabana, 267", + "ShipCity": "Lyon", + "ShipRegion": "RJ", + "ShipPostalCode": 2389, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "FRANS", + "Company": "Franchi S.p.A.", + "ContactName": "Paolo Accorti", + "ContactTitle": "Sales Representative", + "Address": "Via Monte Bianco 34", + "City": "Torino", + "PostalCode": 10100, + "Country": "Italy", + "Phone": "011-4988260", + "Fax": "011-4988261", + "Orders": [ + { + "OrderID": 11060, + "EmployeeID": 2, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 10.98, + "ShipName": "Franchi S.p.A.", + "ShipAddress": "Via Monte Bianco 34", + "ShipCity": "Torino", + "ShipPostalCode": 10100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 10, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "GREAL", + "Company": "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", + "Orders": [ + { + "OrderID": 11061, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-06-11T00:00:00", + "ShipVia": 3, + "Freight": 14.01, + "ShipName": "Great Lakes Food Market", + "ShipAddress": "2732 Baker Blvd.", + "ShipCity": "Eugene", + "ShipRegion": "OR", + "ShipPostalCode": 97403, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 15, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "REGGC", + "Company": "Reggiani Caseifici", + "ContactName": "Maurizio Moroni", + "ContactTitle": "Sales Associate", + "Address": "Strada Provinciale 124", + "City": "Reggio Emilia", + "PostalCode": 42100, + "Country": "Italy", + "Phone": "0522-556721", + "Fax": "0522-556722", + "Orders": [ + { + "OrderID": 11062, + "EmployeeID": 4, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShipVia": 2, + "Freight": 29.93, + "ShipName": "Reggiani Caseifici", + "ShipAddress": "Strada Provinciale 124", + "ShipCity": "Reggio Emilia", + "ShipPostalCode": 42100, + "ShipCountry": "Italy", + "OrderDetails": [ + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 10, + "Discount": 0.2 + }, + { + "ProductID": 70, + "UnitPrice": 15, + "Quantity": 12, + "Discount": 0.2 + } + ] + } + ] + }, + { + "CustomerID": "HUNGO", + "Company": "Hungry Owl All-Night Grocers", + "ContactName": "Patricia McKenna", + "ContactTitle": "Sales Associate", + "Address": "8 Johnstown Road", + "City": "Cork", + "Region": "Co. Cork", + "Country": "Ireland", + "Phone": "2967 542", + "Fax": "2967 3333", + "Orders": [ + { + "OrderID": 11063, + "EmployeeID": 3, + "OrderDate": "1998-04-30T00:00:00", + "RequiredDate": "1998-05-28T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 81.73, + "ShipName": "Hungry Owl All-Night Grocers", + "ShipAddress": "8 Johnstown Road", + "ShipCity": "Cork", + "ShipRegion": "Co. Cork", + "ShipCountry": "Ireland", + "OrderDetails": [ + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 30, + "Discount": 0 + }, + { + "ProductID": 40, + "UnitPrice": 18.4, + "Quantity": 40, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 30, + "Discount": 0.1 + } + ] + } + ] + }, + { + "CustomerID": "SAVEA", + "Company": "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", + "Orders": [ + { + "OrderID": 11064, + "EmployeeID": 1, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 1, + "Freight": 30.09, + "ShipName": "Save-a-lot Markets", + "ShipAddress": "187 Suffolk Ln.", + "ShipCity": "Boise", + "ShipRegion": "ID", + "ShipPostalCode": 83720, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 17, + "UnitPrice": 39, + "Quantity": 77, + "Discount": 0.1 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 12, + "Discount": 0 + }, + { + "ProductID": 53, + "UnitPrice": 32.8, + "Quantity": 25, + "Discount": 0.1 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 4, + "Discount": 0.1 + }, + { + "ProductID": 68, + "UnitPrice": 12.5, + "Quantity": 55, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 11065, + "EmployeeID": 8, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 30, + "UnitPrice": 25.89, + "Quantity": 4, + "Discount": 0.25 + }, + { + "ProductID": 54, + "UnitPrice": 7.45, + "Quantity": 20, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "WHITC", + "Company": "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", + "Orders": [ + { + "OrderID": 11066, + "EmployeeID": 7, + "OrderDate": "1998-05-01T00:00:00", + "RequiredDate": "1998-05-29T00:00:00", + "ShippedDate": "1998-05-04T00:00:00", + "ShipVia": 2, + "Freight": 44.72, + "ShipName": "White Clover Markets", + "ShipAddress": "1029 - 12th Ave. S.", + "ShipCity": "Seattle", + "ShipRegion": "WA", + "ShipPostalCode": 98124, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 42, + "Discount": 0 + }, + { + "ProductID": 34, + "UnitPrice": 14, + "Quantity": 35, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "DRACD", + "Company": "Drachenblut Delikatessen", + "ContactName": "Sven Ottlieb", + "ContactTitle": "Order Administrator", + "Address": "Walserweg 21", + "City": "Aachen", + "PostalCode": 52066, + "Country": "Germany", + "Phone": "0241-039123", + "Fax": "0241-059428", + "Orders": [ + { + "OrderID": 11067, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-05-18T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 7.98, + "ShipName": "Drachenblut Delikatessen", + "ShipAddress": "Walserweg 21", + "ShipCity": "Aachen", + "ShipPostalCode": 52066, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 9, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "QUEEN", + "Company": "Queen Cozinha", + "ContactName": "Lúcia Carvalho", + "ContactTitle": "Marketing Assistant", + "Address": "Alameda dos Canàrios, 891", + "City": "Sao Paulo", + "Region": "SP", + "PostalCode": 5487, + "Country": "Brazil", + "Phone": "(11) 555-1189", + "Orders": [ + { + "OrderID": 11068, + "EmployeeID": 8, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShipVia": 2, + "Freight": 81.75, + "ShipName": "Queen Cozinha", + "ShipAddress": "Alameda dos Canàrios, 891", + "ShipCity": "Sao Paulo", + "ShipRegion": "SP", + "ShipPostalCode": 5487, + "ShipCountry": "Brazil", + "OrderDetails": [ + { + "ProductID": 28, + "UnitPrice": 45.6, + "Quantity": 8, + "Discount": 0.16 + }, + { + "ProductID": 43, + "UnitPrice": 46, + "Quantity": 36, + "Discount": 0.16 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 28, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "TORTU", + "Company": "Tortuga Restaurante", + "ContactName": "Miguel Angel Paolino", + "ContactTitle": "Owner", + "Address": "Avda. Azteca 123", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 555-2933", + "Orders": [ + { + "OrderID": 11069, + "EmployeeID": 1, + "OrderDate": "1998-05-04T00:00:00", + "RequiredDate": "1998-06-01T00:00:00", + "ShippedDate": "1998-05-06T00:00:00", + "ShipVia": 2, + "Freight": 15.67, + "ShipName": "Tortuga Restaurante", + "ShipAddress": "Avda. Azteca 123", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LEHMS", + "Company": "Lehmanns Marktstand", + "ContactName": "Renate Messner", + "ContactTitle": "Sales Representative", + "Address": "Magazinweg 7", + "City": "Frankfurt a.M.", + "PostalCode": 60528, + "Country": "Germany", + "Phone": "069-0245984", + "Fax": "069-0245874", + "Orders": [ + { + "OrderID": 11070, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 1, + "Freight": 136, + "ShipName": "Lehmanns Marktstand", + "ShipAddress": "Magazinweg 7", + "ShipCity": "Frankfurt a.M.", + "ShipPostalCode": 60528, + "ShipCountry": "Germany", + "OrderDetails": [ + { + "ProductID": 1, + "UnitPrice": 18, + "Quantity": 40, + "Discount": 0.16 + }, + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 20, + "Discount": 0.16 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 31, + "UnitPrice": 12.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "LILAS", + "Company": "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", + "Orders": [ + { + "OrderID": 11071, + "EmployeeID": 1, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "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", + "OrderDetails": [ + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 15, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 10, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "ERNSH", + "Company": "Ernst Handel", + "ContactName": "Roland Mendel", + "ContactTitle": "Sales Manager", + "Address": "Kirchgasse 6", + "City": "Graz", + "PostalCode": 8010, + "Country": "Austria", + "Phone": "7675-3425", + "Fax": "7675-3426", + "Orders": [ + { + "OrderID": 11072, + "EmployeeID": 4, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 258.64, + "ShipName": "Ernst Handel", + "ShipAddress": "Kirchgasse 6", + "ShipCity": "Graz", + "ShipPostalCode": 8010, + "ShipCountry": "Austria", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 8, + "Discount": 0 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 40, + "Discount": 0 + }, + { + "ProductID": 50, + "UnitPrice": 16.25, + "Quantity": 22, + "Discount": 0 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 130, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "PERIC", + "Company": "Pericles Comidas clásicas", + "ContactName": "Guillermo Fernández", + "ContactTitle": "Sales Representative", + "Address": "Calle Dr. Jorge Cash 321", + "City": "México D.F.", + "PostalCode": 5033, + "Country": "Mexico", + "Phone": "(5) 552-3745", + "Fax": "(5) 545-3745", + "Orders": [ + { + "OrderID": 11073, + "EmployeeID": 2, + "OrderDate": "1998-05-05T00:00:00", + "RequiredDate": "1998-06-02T00:00:00", + "ShipVia": 2, + "Freight": 24.95, + "ShipName": "Pericles Comidas clásicas", + "ShipAddress": "Calle Dr. Jorge Cash 321", + "ShipCity": "México D.F.", + "ShipPostalCode": 5033, + "ShipCountry": "Mexico", + "OrderDetails": [ + { + "ProductID": 11, + "UnitPrice": 21, + "Quantity": 10, + "Discount": 0 + }, + { + "ProductID": 24, + "UnitPrice": 4.5, + "Quantity": 20, + "Discount": 0 + } + ] + } + ] + }, + { + "CustomerID": "SIMOB", + "Company": "Simons bistro", + "ContactName": "Jytte Petersen", + "ContactTitle": "Owner", + "Address": "Vinbæltet 34", + "City": "Kobenhavn", + "PostalCode": 1734, + "Country": "Denmark", + "Phone": "31 12 34 56", + "Fax": "31 13 35 57", + "Orders": [ + { + "OrderID": 11074, + "EmployeeID": 7, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 18.44, + "ShipName": "Simons bistro", + "ShipAddress": "Vinbæltet 34", + "ShipCity": "Kobenhavn", + "ShipPostalCode": 1734, + "ShipCountry": "Denmark", + "OrderDetails": [ + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 14, + "Discount": 0.06 + } + ] + } + ] + }, + { + "CustomerID": "RICSU", + "Company": "Richter Supermarkt", + "ContactName": "Michael Holz", + "ContactTitle": "Sales Manager", + "Address": "Grenzacherweg 237", + "City": "Genève", + "PostalCode": 1203, + "Country": "Switzerland", + "Phone": "0897-034214", + "Orders": [ + { + "OrderID": 11075, + "EmployeeID": 8, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 6.19, + "ShipName": "Richter Supermarkt", + "ShipAddress": "Starenweg 5", + "ShipCity": "Genève", + "ShipPostalCode": 1204, + "ShipCountry": "Switzerland", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 10, + "Discount": 0.16 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 30, + "Discount": 0.16 + }, + { + "ProductID": 76, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.16 + } + ] + } + ] + }, + { + "CustomerID": "BONAP", + "Company": "Bon app'", + "ContactName": "Laurence Lebihan", + "ContactTitle": "Owner", + "Address": "12, rue des Bouchers", + "City": "Marseille", + "PostalCode": 13008, + "Country": "France", + "Phone": "91.24.45.40", + "Fax": "91.24.45.41", + "Orders": [ + { + "OrderID": 11076, + "EmployeeID": 4, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 38.28, + "ShipName": "Bon app'", + "ShipAddress": "12, rue des Bouchers", + "ShipCity": "Marseille", + "ShipPostalCode": 13008, + "ShipCountry": "France", + "OrderDetails": [ + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 20, + "Discount": 0.25 + }, + { + "ProductID": 19, + "UnitPrice": 9.2, + "Quantity": 10, + "Discount": 0.25 + } + ] + } + ] + }, + { + "CustomerID": "RATTC", + "Company": "Rattlesnake Canyon Grocery", + "ContactName": "Paula Wilson", + "ContactTitle": "Sales Associate", + "Address": "2817 Milton Dr.", + "City": "Albuquerque", + "Region": "NM", + "PostalCode": 87110, + "Country": "USA", + "Phone": "(505) 555-5939", + "Fax": "(505) 555-3620", + "Orders": [ + { + "OrderID": 11077, + "EmployeeID": 1, + "OrderDate": "1998-05-06T00:00:00", + "RequiredDate": "1998-06-03T00:00:00", + "ShipVia": 2, + "Freight": 8.53, + "ShipName": "Rattlesnake Canyon Grocery", + "ShipAddress": "2817 Milton Dr.", + "ShipCity": "Albuquerque", + "ShipRegion": "NM", + "ShipPostalCode": 87110, + "ShipCountry": "USA", + "OrderDetails": [ + { + "ProductID": 2, + "UnitPrice": 19, + "Quantity": 24, + "Discount": 0.2 + }, + { + "ProductID": 3, + "UnitPrice": 10, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 4, + "UnitPrice": 22, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 6, + "UnitPrice": 25, + "Quantity": 1, + "Discount": 0.02 + }, + { + "ProductID": 7, + "UnitPrice": 30, + "Quantity": 1, + "Discount": 0.06 + }, + { + "ProductID": 8, + "UnitPrice": 40, + "Quantity": 2, + "Discount": 0.1 + }, + { + "ProductID": 10, + "UnitPrice": 31, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 12, + "UnitPrice": 38, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 13, + "UnitPrice": 6, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 14, + "UnitPrice": 23.25, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 16, + "UnitPrice": 17.45, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 20, + "UnitPrice": 81, + "Quantity": 1, + "Discount": 0.04 + }, + { + "ProductID": 23, + "UnitPrice": 9, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 32, + "UnitPrice": 32, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 39, + "UnitPrice": 18, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 41, + "UnitPrice": 9.65, + "Quantity": 3, + "Discount": 0 + }, + { + "ProductID": 46, + "UnitPrice": 12, + "Quantity": 3, + "Discount": 0.02 + }, + { + "ProductID": 52, + "UnitPrice": 7, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 55, + "UnitPrice": 24, + "Quantity": 2, + "Discount": 0 + }, + { + "ProductID": 60, + "UnitPrice": 34, + "Quantity": 2, + "Discount": 0.06 + }, + { + "ProductID": 64, + "UnitPrice": 33.25, + "Quantity": 2, + "Discount": 0.04 + }, + { + "ProductID": 66, + "UnitPrice": 17, + "Quantity": 1, + "Discount": 0 + }, + { + "ProductID": 73, + "UnitPrice": 15, + "Quantity": 2, + "Discount": 0.0099999998 + }, + { + "ProductID": 75, + "UnitPrice": 7.75, + "Quantity": 4, + "Discount": 0 + }, + { + "ProductID": 77, + "UnitPrice": 13, + "Quantity": 2, + "Discount": 0 + } + ] + } + ] + } +] \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.css b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx new file mode 100644 index 0000000000..c6e4a7c35b --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx @@ -0,0 +1,201 @@ +import React, { useEffect, useRef, useState } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { + ColumnPinningPosition, + IgrGridToolbar, + IgrGridToolbarActions, + IgrGridToolbarTitle, + IgrHierarchicalGrid, + IgrPinningConfig, + IgrRowIsland, + IgrColumn, +} from "igniteui-react-grids"; +import { IgrButton } from "igniteui-react"; + +import HierarchicalCustomersData from "./HierarchicalCustomersData.json"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; + +export default function App() { + const gridRef = useRef(null); + const [data, setData] = useState([]); + const [pinningConfig] = useState({ + columns: ColumnPinningPosition.End, + }); + + const start = ColumnPinningPosition.Start; + const end = ColumnPinningPosition.End; + + useEffect(() => { + setData(HierarchicalCustomersData); + }, []); + + const pinLeft = () => { + const grid = gridRef.current; + if (!grid) return; + grid.selectedColumns().forEach((col) => { + col.pinningPosition = start; + col.pinned = true; + }); + }; + + const pinRight = () => { + const grid = gridRef.current; + if (!grid) return; + grid.selectedColumns().forEach((col) => { + col.pinningPosition = end; + col.pinned = true; + }); + }; + + const unpinColumn = () => { + const grid = gridRef.current; + if (!grid) return; + grid.selectedColumns().forEach((col) => { + col.pinned = false; + }); + }; + + return ( +
+
+ + + + + Unpin Column + + + Pin Left + + + Pin Right + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot( + document.getElementById("root") as HTMLElement, +); +root.render(); diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/react-app-env.d.ts b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/tsconfig.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/tsconfig.json new file mode 100644 index 0000000000..2e56e9a399 --- /dev/null +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": ["es6", "dom"], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": ["src"] +} diff --git a/samples/grids/tree-grid/column-pinning-both-sides/.eslintrc.js b/samples/grids/tree-grid/column-pinning-both-sides/.eslintrc.js new file mode 100644 index 0000000000..9d283f6407 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/.eslintrc.js @@ -0,0 +1,76 @@ +// https://www.robertcooper.me/using-eslint-and-prettier-in-a-typescript-project +module.exports = { + parser: "@typescript-eslint/parser", // Specifies the ESLint parser + parserOptions: { + ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features + sourceType: "module", // Allows for the use of imports + ecmaFeatures: { + jsx: true // Allows for the parsing of JSX + } + }, + settings: { + react: { + version: "999.999.999" // Tells eslint-plugin-react to automatically detect the version of React to use + } + }, + extends: [ + "eslint:recommended", + "plugin:react/recommended", // Uses the recommended rules from @eslint-plugin-react + "plugin:@typescript-eslint/recommended" // Uses the recommended rules from @typescript-eslint/eslint-plugin + ], + rules: { + // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + }, + "overrides": [ + { + "files": ["*.ts", "*.tsx"], + "rules": { + "default-case": "off", + "jsx-a11y/alt-text": "off", + "jsx-a11y/iframe-has-title": "off", + "no-var": "off", + "no-undef": "off", + "no-unused-vars": "off", + "no-extend-native": "off", + "no-throw-literal": "off", + "no-useless-concat": "off", + "no-mixed-operators": "off", + "no-prototype-builtins": "off", + "prefer-const": "off", + "prefer-rest-params": "off", + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-inferrable-types": "off", + "@typescript-eslint/no-useless-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/prefer-namespace-keyword": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off" + } + } + ] + }; \ No newline at end of file diff --git a/samples/grids/tree-grid/column-pinning-both-sides/ReadMe.md b/samples/grids/tree-grid/column-pinning-both-sides/ReadMe.md new file mode 100644 index 0000000000..7f3f99e103 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/ReadMe.md @@ -0,0 +1,56 @@ + + + +This folder contains implementation of React application with example of Row Drag Base feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. + + + + + + View Docs + + + View Code + + + Run Sample + + + Run Sample + + + + +## Branches + +> **_NOTE:_** You should use [master](https://github.com/IgniteUI/igniteui-react-examples/tree/master) branch of this repository if you want to run samples on your computer. Use the [vnext](https://github.com/IgniteUI/igniteui-react-examples/tree/vnext) branch only when you want to contribute new samples to this repository. + +## Instructions + +Follow these instructions to run this example: + + +``` +git clone https://github.com/IgniteUI/igniteui-react-examples.git +git checkout master +cd ./igniteui-react-examples +cd ./samples/grids/grid/row-drag-base +``` + +open above folder in VS Code or type: +``` +code . +``` + +In terminal window, run: +``` +npm install --legacy-peer-deps +npm run-script start +``` + +Then open http://localhost:4200/ in your browser + + +## Learn More + +To learn more about **Ignite UI for React** components, check out the [React documentation](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html). diff --git a/samples/grids/tree-grid/column-pinning-both-sides/package.json b/samples/grids/tree-grid/column-pinning-both-sides/package.json new file mode 100644 index 0000000000..371824e9d6 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/package.json @@ -0,0 +1,49 @@ +{ + "name": "example-ignite-ui-react", + "description": "This project provides example of using Ignite UI for React components", + "author": "Infragistics", + "version": "1.4.0", + "license": "", + "homepage": ".", + "private": true, + "scripts": { + "start": "set PORT=4200 && react-scripts --max_old_space_size=10240 start", + "build": "react-scripts --max_old_space_size=10240 build ", + "test": "react-scripts test --env=jsdom", + "eject": "react-scripts eject", + "lint": "eslint ./src/**/*.{ts,tsx}" + }, + "dependencies": { + "igniteui-dockmanager": "^1.17.0", + "igniteui-react": "19.3.0-rc.2", + "igniteui-react-core": "19.2.2", + "igniteui-react-datasources": "19.2.2", + "igniteui-react-grids": "19.3.0-rc.2", + "igniteui-react-inputs": "19.2.2", + "igniteui-react-layouts": "19.2.2", + "igniteui-webcomponents": "^6.2.0", + "lit-html": "^3.2.0", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-scripts": "^5.0.1", + "tslib": "^2.4.0" + }, + "devDependencies": { + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", + "@types/react": "^18.0.24", + "@types/react-dom": "^18.0.8", + "eslint": "^8.33.0", + "eslint-config-react": "^1.1.7", + "eslint-plugin-react": "^7.20.0", + "react-app-rewired": "^2.2.1", + "typescript": "^4.8.4", + "worker-loader": "^3.0.8" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ] +} diff --git a/samples/grids/tree-grid/column-pinning-both-sides/public/index.html b/samples/grids/tree-grid/column-pinning-both-sides/public/index.html new file mode 100644 index 0000000000..e2d3265576 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/public/index.html @@ -0,0 +1,11 @@ + + + + Sample | Ignite UI | React | infragistics + + + + +
+ + \ No newline at end of file diff --git a/samples/grids/tree-grid/column-pinning-both-sides/sandbox.config.json b/samples/grids/tree-grid/column-pinning-both-sides/sandbox.config.json new file mode 100644 index 0000000000..07f53508eb --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/sandbox.config.json @@ -0,0 +1,5 @@ +{ + "infiniteLoopProtection": false, + "hardReloadOnChange": false, + "view": "browser" +} \ No newline at end of file diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/EmployeesFlatDetails.ts b/samples/grids/tree-grid/column-pinning-both-sides/src/EmployeesFlatDetails.ts new file mode 100644 index 0000000000..3d9e9f57d5 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/EmployeesFlatDetails.ts @@ -0,0 +1,50 @@ +export class EmployeesFlatDetailsItem { + public constructor(init: Partial) { + Object.assign(this, init); + } + + public Address: string; + public Age: number; + public City: string; + public Country: string; + public Fax: string; + public HireDate: string; + public ID: number; + public Name: string; + public ParentID: number; + public Phone: string; + public PostalCode: number; + public Title: string; + public LastName: string; + public FullAddress: string; + +} +export class EmployeesFlatDetails extends Array { + public constructor(items: Array | number = -1) { + if (Array.isArray(items)) { + super(...items); + } else { + const newItems = [ + new EmployeesFlatDetailsItem({ Address: `Obere Str. 57`, Age: 55, City: `Berlin`, Country: `Germany`, Fax: `030-0076545`, HireDate: `2008-03-20`, ID: 1, Name: `Johnathan Winchester`, ParentID: -1, Phone: `030-0074321`, PostalCode: 12209, Title: `Development Manager`, LastName: `Winchester`, FullAddress: `Obere Str. 57, Berlin, Germany` }), + new EmployeesFlatDetailsItem({ Address: `Avda. de la Constitución 2222`, Age: 42, City: `México D.F.`, Country: `Mexico`, Fax: `(51) 555-3745`, HireDate: `2014-01-22`, ID: 4, Name: `Ana Sanders`, ParentID: -1, Phone: `(5) 555-4729`, PostalCode: 5021, Title: `CEO`, LastName: `Sanders`, FullAddress: `Avda. de la Constitución 2222, México D.F., Mexico` }), + new EmployeesFlatDetailsItem({ Address: `Mataderos 2312`, Age: 49, City: `México D.F.`, Country: `Mexico`, Fax: `(5) 555-3995`, HireDate: `2014-01-22`, ID: 18, Name: `Victoria Lincoln`, ParentID: -1, Phone: `(5) 555-3932`, PostalCode: 5023, Title: `Accounting Manager`, LastName: `Lincoln`, FullAddress: `Mataderos 2312, México D.F., Mexico` }), + new EmployeesFlatDetailsItem({ Address: `120 Hanover Sq.`, Age: 61, City: `London`, Country: `UK`, Fax: `(171) 555-6750`, HireDate: `2010-01-01`, ID: 10, Name: `Yang Wang`, ParentID: -1, Phone: `(171) 555-7788`, PostalCode: 39000, Title: `Localization Manager`, LastName: `Wang`, FullAddress: `120 Hanover Sq., London, UK` }), + new EmployeesFlatDetailsItem({ Address: `Berguvsvägen 8`, Age: 43, City: `Luleå`, Country: `Sweden`, Fax: `0921-12 34 67`, HireDate: `2011-06-03`, ID: 3, Name: `Michael Burke`, ParentID: 1, Phone: `0921-12 34 65`, PostalCode: 29000, Title: `Senior Software Developer`, LastName: `Burke`, FullAddress: `Berguvsvägen 8, Luleå, Sweden` }), + new EmployeesFlatDetailsItem({ Address: `Forsterstr. 57`, Age: 29, City: `Mannheim`, Country: `Germany`, Fax: `0621-08924`, HireDate: `2009-06-19`, ID: 2, Name: `Thomas Anderson`, ParentID: 1, Phone: `0621-08460`, PostalCode: 68306, Title: `Senior Software Developer`, LastName: `Anderson`, FullAddress: `Forsterstr. 57, Mannheim, Germany` }), + new EmployeesFlatDetailsItem({ Address: `24, place Kléber`, Age: 31, City: `Strasbourg`, Country: `France`, Fax: `88.60.15.32`, HireDate: `2014-08-18`, ID: 11, Name: `Monica Reyes`, ParentID: 1, Phone: `88.60.15.31`, PostalCode: 67000, Title: `Software Development Team Lead`, LastName: `Reyes`, FullAddress: `24, place Kléber, Strasbourg, France` }), + new EmployeesFlatDetailsItem({ Address: `C/ Araquil, 67`, Age: 35, City: `Madrid`, Country: `Spain`, Fax: `(911) 555 91 99`, HireDate: `2015-09-17`, ID: 6, Name: `Roland Mendel`, ParentID: 11, Phone: `(91) 555 22 82`, PostalCode: 28023, Title: `Senior Software Developer`, LastName: `Mendel`, FullAddress: `C/ Araquil, 67, Madrid, Spain` }), + new EmployeesFlatDetailsItem({ Address: `12, rue des Bouchers`, Age: 44, City: `Marseille`, Country: `France`, Fax: `91.24.45.41`, HireDate: `2009-10-11`, ID: 12, Name: `Sven Cooper`, ParentID: 11, Phone: `91.24.45.40`, PostalCode: 13008, Title: `Senior Software Developer`, LastName: `Cooper`, FullAddress: `12, rue des Bouchers, Marseille, France` }), + new EmployeesFlatDetailsItem({ Address: `23 Tsawassen Blvd.`, Age: 44, City: `Tsawassen`, Country: `Canada`, Fax: `(604) 555-3745`, HireDate: `2014-04-04`, ID: 14, Name: `Laurence Johnson`, ParentID: 4, Phone: `(604) 555-4729`, PostalCode: 19000, Title: `Director`, LastName: `Johnson`, FullAddress: `23 Tsawassen Blvd., Tsawassen, Canada` }), + new EmployeesFlatDetailsItem({ Address: `Fauntleroy Circus`, Age: 25, City: `London`, Country: `UK`, Fax: `(125) 555-3798`, HireDate: `2017-11-9`, ID: 5, Name: `Elizabeth Richards`, ParentID: 4, Phone: `(171) 555-1212`, PostalCode: 30000, Title: `Vice President`, LastName: `Richards`, FullAddress: `Fauntleroy Circus, London, UK` }), + new EmployeesFlatDetailsItem({ Address: `Cerrito 333`, Age: 39, City: `Buenos Aires`, Country: `Argentina`, Fax: `(121) 135-4892`, HireDate: `2010-03-22`, ID: 13, Name: `Trevor Ashworth`, ParentID: 5, Phone: `(1) 135-5555`, PostalCode: 1010, Title: `Director`, LastName: `Ashworth`, FullAddress: `Cerrito 333, Buenos Aires, Argentina` }), + new EmployeesFlatDetailsItem({ Address: `Sierras de Granada 9993`, Age: 44, City: `México D.F.`, Country: `Mexico`, Fax: `(153) 555-7293`, HireDate: `2014-04-04`, ID: 17, Name: `Antonio Moreno`, ParentID: 18, Phone: `(5) 555-3392`, PostalCode: 5022, Title: `Senior Accountant`, LastName: `Moreno`, FullAddress: `Sierras de Granada 9993, México D.F., Mexico` }), + new EmployeesFlatDetailsItem({ Address: `Hauptstr. 29`, Age: 50, City: `Sao Paulo`, Country: `Brazil`, Fax: `(531) 555-6691`, HireDate: `2007-11-18`, ID: 7, Name: `Pedro Rodriguez`, ParentID: 10, Phone: `0452-076545`, PostalCode: 3012, Title: `Senior Localization Developer`, LastName: `Rodriguez`, FullAddress: `Hauptstr. 29, Sao Paulo, Brazil` }), + new EmployeesFlatDetailsItem({ Address: `Av. dos Lusíadas, 23`, Age: 27, City: `Bern`, Country: `Switzerland`, Fax: `(271) 335-357`, HireDate: `2016-02-19`, ID: 8, Name: `Casey Harper`, ParentID: 10, Phone: `(11) 555-7647`, PostalCode: 40000, Title: `Senior Localization`, LastName: `Harper`, FullAddress: `Av. dos Lusíadas, 23, Bern, Switzerland` }), + new EmployeesFlatDetailsItem({ Address: `Berkeley Gardens 12`, Age: 25, City: `London`, Country: `UK`, Fax: `(171) 555-9199`, HireDate: `2017-11-09`, ID: 15, Name: `Patricia Simpson`, ParentID: 7, Phone: `(171) 555-2282`, PostalCode: 26000, Title: `Localization Intern`, LastName: `Simpson`, FullAddress: `Berkeley Gardens 12, London, UK` }), + new EmployeesFlatDetailsItem({ Address: `Walserweg 21`, Age: 39, City: `Aachen`, Country: `Germany`, Fax: `0241-059428`, HireDate: `2010-03-22`, ID: 9, Name: `Francisco Chang`, ParentID: 7, Phone: `0241-039123`, PostalCode: 52066, Title: `Localization Intern`, LastName: `Chang`, FullAddress: `Walserweg 21, Aachen, Germany` }), + new EmployeesFlatDetailsItem({ Address: `35 King George`, Age: 25, City: `London`, Country: `UK`, Fax: `(171) 555-3373`, HireDate: `2018-03-18`, ID: 16, Name: `Peter Lewis`, ParentID: 7, Phone: `(171) 555-0297`, PostalCode: 48000, Title: `Localization Intern`, LastName: `Lewis`, FullAddress: `35 King George, London, UK` }), + ]; + super(...newItems.slice(0)); + } + } +} diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/index.css b/samples/grids/tree-grid/column-pinning-both-sides/src/index.css new file mode 100644 index 0000000000..544c74b366 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/index.css @@ -0,0 +1,7 @@ +/* shared styles are loaded from: */ +/* https://static.infragistics.com/xplatform/css/samples */ + +.wrapper { + justify-content: space-evenly; + margin: 1rem; +} \ No newline at end of file diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx new file mode 100644 index 0000000000..41116728c6 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx @@ -0,0 +1,137 @@ +import React, { useEffect, useRef, useState } from "react"; +import ReactDOM from "react-dom/client"; +import "./index.css"; + +import { + ColumnPinningPosition, + IgrGridToolbar, + IgrGridToolbarActions, + IgrPinningConfig, + IgrTreeGrid, + IgrColumn, +} from "igniteui-react-grids"; +import { IgrButton } from "igniteui-react"; +import { EmployeesFlatDetails } from "./EmployeesFlatDetails"; + +import "igniteui-react-grids/grids/themes/light/bootstrap.css"; + +export default function App() { + const gridRef = useRef(null); + const [data, setData] = useState([]); + const [pinningConfig] = useState({ + columns: ColumnPinningPosition.End, + }); + + const start = ColumnPinningPosition.Start; + const end = ColumnPinningPosition.End; + + useEffect(() => { + const employeesData = new EmployeesFlatDetails(); + + setData(employeesData); + }, []); + + const pinLeft = () => { + const grid = gridRef.current; + if (!grid) return; + grid.selectedColumns().forEach((col) => { + col.pinningPosition = start; + col.pinned = true; + }); + }; + + const pinRight = () => { + const grid = gridRef.current; + if (!grid) return; + grid.selectedColumns().forEach((col) => { + col.pinningPosition = end; + col.pinned = true; + }); + }; + + const unpinColumn = () => { + const grid = gridRef.current; + if (!grid) return; + grid.selectedColumns().forEach((col) => { + col.pinned = false; + }); + }; + + return ( +
+
+ + + + + Unpin Column + + + Pin Left + + + Pin Right + + + + + + + + + + + + + + + + +
+
+ ); +} + +// rendering above component in the React DOM +const root = ReactDOM.createRoot( + document.getElementById("root") as HTMLElement, +); +root.render(); diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/react-app-env.d.ts b/samples/grids/tree-grid/column-pinning-both-sides/src/react-app-env.d.ts new file mode 100644 index 0000000000..6431bc5fc6 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/samples/grids/tree-grid/column-pinning-both-sides/tsconfig.json b/samples/grids/tree-grid/column-pinning-both-sides/tsconfig.json new file mode 100644 index 0000000000..2e56e9a399 --- /dev/null +++ b/samples/grids/tree-grid/column-pinning-both-sides/tsconfig.json @@ -0,0 +1,39 @@ +{ + "compilerOptions": { + "resolveJsonModule": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "build/dist", + "module": "esnext", + "target": "es5", + "lib": ["es6", "dom"], + "sourceMap": true, + "allowJs": true, + "jsx": "react-jsx", + "moduleResolution": "node", + "rootDir": "src", + "forceConsistentCasingInFileNames": true, + "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, + "noUnusedLocals": false, + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "skipLibCheck": true, + "strict": false, + "isolatedModules": true, + "noEmit": true + }, + "exclude": [ + "node_modules", + "build", + "scripts", + "acceptance-tests", + "webpack", + "jest", + "src/setupTests.ts", + "**/odatajs-4.0.0.js", + "config-overrides.js" + ], + "include": ["src"] +} From 2d529278e3c26f1e99661eb1228354247b79877f Mon Sep 17 00:00:00 2001 From: Ivan Minchev Date: Sun, 19 Oct 2025 20:32:55 +0300 Subject: [PATCH 2/3] refactor(pinning-both-sides): minor adjustments to samples --- .../grids/grid/column-pinning-both-sides/ReadMe.md | 8 ++++---- .../grid/column-pinning-both-sides/package.json | 4 ++-- .../grid/column-pinning-both-sides/src/index.tsx | 3 +-- .../column-pinning-both-sides/ReadMe.md | 8 ++++---- .../column-pinning-both-sides/package.json | 4 ++-- .../column-pinning-both-sides/src/index.tsx | 13 +++++-------- .../tree-grid/column-pinning-both-sides/ReadMe.md | 8 ++++---- .../column-pinning-both-sides/package.json | 4 ++-- .../column-pinning-both-sides/src/index.tsx | 10 +++------- 9 files changed, 27 insertions(+), 35 deletions(-) diff --git a/samples/grids/grid/column-pinning-both-sides/ReadMe.md b/samples/grids/grid/column-pinning-both-sides/ReadMe.md index 7f3f99e103..04936b4103 100644 --- a/samples/grids/grid/column-pinning-both-sides/ReadMe.md +++ b/samples/grids/grid/column-pinning-both-sides/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of React application with example of Row Drag Base feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. +This folder contains implementation of React application with example of Column Pinning Both Sides feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of React application with example of Row Dra View Code - + Run Sample - + Run Sample @@ -34,7 +34,7 @@ Follow these instructions to run this example: git clone https://github.com/IgniteUI/igniteui-react-examples.git git checkout master cd ./igniteui-react-examples -cd ./samples/grids/grid/row-drag-base +cd ./samples/grids/grid/column-pinning-both-sides ``` open above folder in VS Code or type: diff --git a/samples/grids/grid/column-pinning-both-sides/package.json b/samples/grids/grid/column-pinning-both-sides/package.json index 371824e9d6..feded53344 100644 --- a/samples/grids/grid/column-pinning-both-sides/package.json +++ b/samples/grids/grid/column-pinning-both-sides/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "19.3.0-rc.2", + "igniteui-react": "19.3.0-rc.3", "igniteui-react-core": "19.2.2", "igniteui-react-datasources": "19.2.2", - "igniteui-react-grids": "19.3.0-rc.2", + "igniteui-react-grids": "19.3.0-rc.3", "igniteui-react-inputs": "19.2.2", "igniteui-react-layouts": "19.2.2", "igniteui-webcomponents": "^6.2.0", diff --git a/samples/grids/grid/column-pinning-both-sides/src/index.tsx b/samples/grids/grid/column-pinning-both-sides/src/index.tsx index bcfcda9cd3..007ed0b22e 100644 --- a/samples/grids/grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/grid/column-pinning-both-sides/src/index.tsx @@ -35,7 +35,7 @@ export default function App() { header: "Contact Name", width: 200, pinned: true, - pinningPosition: ColumnPinningPosition.End, + pinningPosition: ColumnPinningPosition.Start, }, { field: "ContactTitle", @@ -105,7 +105,6 @@ export default function App() { width={c.width} pinned={c.pinned} hidden={c.hidden} - headerClasses="customHeaderSyle" pinningPosition={c?.pinningPosition} /> ))} diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/ReadMe.md b/samples/grids/hierarchical-grid/column-pinning-both-sides/ReadMe.md index 7f3f99e103..dc6d486f15 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/ReadMe.md +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/ReadMe.md @@ -1,7 +1,7 @@ -This folder contains implementation of React application with example of Row Drag Base feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. +This folder contains implementation of React application with example of Column Pinning Both Sides feature using [Hierarchical Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of React application with example of Row Dra View Code - + Run Sample - + Run Sample @@ -34,7 +34,7 @@ Follow these instructions to run this example: git clone https://github.com/IgniteUI/igniteui-react-examples.git git checkout master cd ./igniteui-react-examples -cd ./samples/grids/grid/row-drag-base +cd ./samples/grids/hierarchical-grid/column-pinning-both-sides ``` open above folder in VS Code or type: diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json index 371824e9d6..feded53344 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "19.3.0-rc.2", + "igniteui-react": "19.3.0-rc.3", "igniteui-react-core": "19.2.2", "igniteui-react-datasources": "19.2.2", - "igniteui-react-grids": "19.3.0-rc.2", + "igniteui-react-grids": "19.3.0-rc.3", "igniteui-react-inputs": "19.2.2", "igniteui-react-layouts": "19.2.2", "igniteui-webcomponents": "^6.2.0", diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx index c6e4a7c35b..61b347e810 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx @@ -25,9 +25,6 @@ export default function App() { columns: ColumnPinningPosition.End, }); - const start = ColumnPinningPosition.Start; - const end = ColumnPinningPosition.End; - useEffect(() => { setData(HierarchicalCustomersData); }, []); @@ -36,7 +33,7 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinningPosition = start; + col.pinningPosition = ColumnPinningPosition.Start; col.pinned = true; }); }; @@ -45,7 +42,7 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinningPosition = end; + col.pinningPosition = ColumnPinningPosition.End; col.pinned = true; }); }; @@ -90,13 +87,12 @@ export default function App() { field="Company" header="Company Name" pinned={true} - pinningPosition={start} + pinningPosition={ColumnPinningPosition.Start} > @@ -115,6 +111,8 @@ export default function App() { header="Order Date" dataType="date" resizable={true} + pinned={true} + pinningPosition={ColumnPinningPosition.Start} > -This folder contains implementation of React application with example of Row Drag Base feature using [Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. +This folder contains implementation of React application with example of Column Pinning Both Sides feature using [Tree Grid](https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started.html) component. @@ -12,10 +12,10 @@ This folder contains implementation of React application with example of Row Dra View Code - + Run Sample - + Run Sample @@ -34,7 +34,7 @@ Follow these instructions to run this example: git clone https://github.com/IgniteUI/igniteui-react-examples.git git checkout master cd ./igniteui-react-examples -cd ./samples/grids/grid/row-drag-base +cd ./samples/grids/tree-grid/column-pinning-both-sides ``` open above folder in VS Code or type: diff --git a/samples/grids/tree-grid/column-pinning-both-sides/package.json b/samples/grids/tree-grid/column-pinning-both-sides/package.json index 371824e9d6..feded53344 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/package.json +++ b/samples/grids/tree-grid/column-pinning-both-sides/package.json @@ -15,10 +15,10 @@ }, "dependencies": { "igniteui-dockmanager": "^1.17.0", - "igniteui-react": "19.3.0-rc.2", + "igniteui-react": "19.3.0-rc.3", "igniteui-react-core": "19.2.2", "igniteui-react-datasources": "19.2.2", - "igniteui-react-grids": "19.3.0-rc.2", + "igniteui-react-grids": "19.3.0-rc.3", "igniteui-react-inputs": "19.2.2", "igniteui-react-layouts": "19.2.2", "igniteui-webcomponents": "^6.2.0", diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx index 41116728c6..bfb70ff58d 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx @@ -22,9 +22,6 @@ export default function App() { columns: ColumnPinningPosition.End, }); - const start = ColumnPinningPosition.Start; - const end = ColumnPinningPosition.End; - useEffect(() => { const employeesData = new EmployeesFlatDetails(); @@ -35,7 +32,7 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinningPosition = start; + col.pinningPosition = ColumnPinningPosition.Start; col.pinned = true; }); }; @@ -44,7 +41,7 @@ export default function App() { const grid = gridRef.current; if (!grid) return; grid.selectedColumns().forEach((col) => { - col.pinningPosition = end; + col.pinningPosition = ColumnPinningPosition.End; col.pinned = true; }); }; @@ -91,14 +88,13 @@ export default function App() { dataType="string" width="250px" pinned={true} - pinningPosition={start} + pinningPosition={ColumnPinningPosition.Start} /> Date: Thu, 23 Oct 2025 15:06:48 +0300 Subject: [PATCH 3/3] fix(pinning): fixing output for samples --- browser/public/meta.json | 2 +- browser/src/navigation/SamplesBrowser.json | 2 +- samples/grids/grid/column-pinning-both-sides/src/index.tsx | 6 ++---- .../column-pinning-both-sides/src/index.tsx | 4 +--- .../grids/tree-grid/column-pinning-both-sides/src/index.tsx | 4 +--- 5 files changed, 6 insertions(+), 12 deletions(-) diff --git a/browser/public/meta.json b/browser/public/meta.json index 37c814fa0f..8089d5d63c 100644 --- a/browser/public/meta.json +++ b/browser/public/meta.json @@ -1 +1 @@ -{"version":"23.2.915","date":"2025-10-23 11:54:11","note":"this file is auto-generated"} \ No newline at end of file +{"version":"23.2.915","date":"2025-10-23 14:55:33","note":"this file is auto-generated"} \ No newline at end of file diff --git a/browser/src/navigation/SamplesBrowser.json b/browser/src/navigation/SamplesBrowser.json index 37c814fa0f..8089d5d63c 100644 --- a/browser/src/navigation/SamplesBrowser.json +++ b/browser/src/navigation/SamplesBrowser.json @@ -1 +1 @@ -{"version":"23.2.915","date":"2025-10-23 11:54:11","note":"this file is auto-generated"} \ No newline at end of file +{"version":"23.2.915","date":"2025-10-23 14:55:33","note":"this file is auto-generated"} \ No newline at end of file diff --git a/samples/grids/grid/column-pinning-both-sides/src/index.tsx b/samples/grids/grid/column-pinning-both-sides/src/index.tsx index 007ed0b22e..be088f9bc1 100644 --- a/samples/grids/grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/grid/column-pinning-both-sides/src/index.tsx @@ -115,7 +115,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot( - document.getElementById("root") as HTMLElement, -); -root.render(); +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); \ No newline at end of file diff --git a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx index 61b347e810..d89d49303c 100644 --- a/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/hierarchical-grid/column-pinning-both-sides/src/index.tsx @@ -192,7 +192,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot( - document.getElementById("root") as HTMLElement, -); +const root = ReactDOM.createRoot(document.getElementById('root')); root.render(); diff --git a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx index bfb70ff58d..62e62f468a 100644 --- a/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx +++ b/samples/grids/tree-grid/column-pinning-both-sides/src/index.tsx @@ -127,7 +127,5 @@ export default function App() { } // rendering above component in the React DOM -const root = ReactDOM.createRoot( - document.getElementById("root") as HTMLElement, -); +const root = ReactDOM.createRoot(document.getElementById('root')); root.render();