Skip to content

Instantly share code, notes, and snippets.

@panoply
Last active May 26, 2016 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save panoply/ced41dd9e8ddfea671c9bb0249e99715 to your computer and use it in GitHub Desktop.
Save panoply/ced41dd9e8ddfea671c9bb0249e99715 to your computer and use it in GitHub Desktop.
Json File Example for Stack
{ "products":[
{
"title":"One",
"handle":"link-one",
"tags":[
"Red",
"Square",
"Autumn \/ Winter"
],
"variants":[
{
"price":"100.00",
"size": "Small"
}
],
"images":[
{
"id":"1",
"src": "image-one.jpg"
}
]
},
{
"title":"Two",
"handle":"link-two",
"tags":[
"Blue",
"Hexagon",
"Spring \/ Summer"
],
"variants":[
{
"price":"100.00",
"size": "Small"
}
],
"images":[
{
"id":"2",
"src": "image-two.jpg"
}
]
},
{
"title":"Three",
"handle":"link-three",
"tags":[
"Red",
"Square",
"Autumn \/ Winter"
],
"variants":[
{
"price":"100.00",
"size": "Small"
}
],
"images":[
{
"id":"3",
"src": "image-three.jpg"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment