You are on page 1of 2

db.carts.

insert({
_id: "the_users_session_id",
status:'active',
quantity: 2,
total: 2000,
products: []});

db.orders.insert({
created_on: new ISODate("2012-05-17T08:14:15.656Z"),

shipping: {
customer: "Peter P Peterson",
address: "Longroad 1343",
city: "Peterburg",
region: "",
state: "PE",
country: "Peteonia",
delivery_notes: "Leave at the gate",

tracking: {
company: "ups",
tracking_number: "22122X211SD",
status: "ontruck",
estimated_delivery: new ISODate("2012-05-17T08:14:15.656Z")
},
},

payment: {
method: "visa",
transaction_id: "2312213312XXXTD"
}

products: {
{quantity: 2, sku:"111445GB3", title: "Simsong mobile phone", unit_cost:1000,
currency:"USDA"}
}
})

{
sku: "00e8da9b",
type: "Audio Album",
title: "A Love Supreme",
description: "by John Coltrane",
asin: "B0000A118M",

shipping: {
weight: 6,
dimensions: {
width: 10,
height: 10,
depth: 1
},
},

pricing: {
list: 1200,
retail: 1100,
savings: 100,
pct_savings: 8
},

details: {
title: "A Love Supreme [Original Recording Reissued]",
artist: "John Coltrane",
genre: [ "Jazz", "General" ],
...
tracks: [
"A Love Supreme Part I: Acknowledgement",
"A Love Supreme Part II - Resolution",
"A Love Supreme, Part III: Pursuance",
"A Love Supreme, Part IV-Psalm"
],
},
}

{
sku: "00e8da9d",
type: "Film",
...,
asin: "B000P0J0AQ",

shipping: { ... },

pricing: { ... },

details: {
title: "The Matrix",
director: [ "Andy Wachowski", "Larry Wachowski" ],
writer: [ "Andy Wachowski", "Larry Wachowski" ],
...,
aspect_ratio: "1.66:1"
},
}

You might also like