Skip to content

Instantly share code, notes, and snippets.

@mul14
Created February 22, 2018 04:56
Show Gist options
  • Save mul14/e3fa87daa39e6d5ef2b48754130f48f7 to your computer and use it in GitHub Desktop.
Save mul14/e3fa87daa39e6d5ef2b48754130f48f7 to your computer and use it in GitHub Desktop.
JSON sample data for challenge
{
"orders": [
{
"id": 110,
"code": "A-1003",
"customer_id": 23,
"items_ids": [1, 3, 4],
"grand_total": 30000
},
{
"id": 111,
"code": "C-4332",
"customer_id": 21,
"items_ids": [103, 3, 4],
"grand_total": 50000
},
{
"id": 112,
"code": "D-8832",
"customer_id": 23,
"items_ids": [131],
"grand_total": 30500
},
{
"id": 113,
"code": "A-8421",
"customer_id": 643,
"items_ids": [143, 3, 483],
"grand_total": 1230000
},
{
"id": 114,
"code": "J-9930",
"customer_id": 53,
"items_ids": [13],
"grand_total": 940000
},
{
"id": 115,
"code": "K-1003",
"customer_id": 23,
"items_ids": [148, 3, 448],
"grand_total": 702200
},
{
"id": 116,
"code": "Q-1049",
"customer_id": 23,
"items_ids": [84, 3, 4489],
"grand_total": 38000
},
{
"id": 117,
"code": "Z-1002",
"customer_id": 21,
"items_ids": [774, 422],
"grand_total": 345000
},
{
"id": 118,
"code": "R-7372",
"customer_id": 23,
"items_ids": [47],
"grand_total": 34000
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment