Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.87 KB | None | 0 0
  1. [{
  2.   "name": "List Name",
  3.   "description": "List description.",
  4.   "numItems": "Total number of items in list.",
  5.   "stocks": {
  6.     "inStock": {
  7.       "numItems": "Number of items in stock.",
  8.       "items": [
  9.         {
  10.   "name": "Item Name",
  11.   "description": "Item description.",
  12.   "quantity": "InStock: Current quantity; OutStock: 0; ShopStock: Quantity to purchase.",
  13.   "unitOfMeasure": "Unit of measurement.",
  14.   "brand": "Item brand",
  15.   "image": "image.png",
  16.   "barcode": "barcode.png",
  17.   "upc": "Product number read from barcode."
  18. }
  19.       ]
  20.     },
  21.     "outStock": {
  22.       "numItems": "Number of items out of stock.",
  23.       "items": [
  24.         {
  25.           "item": "Item 1"
  26.         }
  27.       ]
  28.     },
  29.     "shopStock": {
  30.       "numItems": "Number of items to be purchased.",
  31.       "items": [
  32.         {
  33.           "item": "Item 1"
  34.         }
  35.       ]
  36.     }
  37.   }
  38. }]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement