Skip to content

Instantly share code, notes, and snippets.

@wesleysaraujo
Created August 25, 2016 05:37
Show Gist options
  • Save wesleysaraujo/6382ce5a86e7c0705ef96d8882b2b6ab to your computer and use it in GitHub Desktop.
Save wesleysaraujo/6382ce5a86e7c0705ef96d8882b2b6ab to your computer and use it in GitHub Desktop.
Listagem de produtos de exemplo
[
{
"id" : 1,
"name" : "Calça Jeans Masculina",
"description" : "Calça jeans rajada, sizes P M G GG",
"price" : 89.90,
"amount_off" : 24,
"price_off" : 39.99,
"image" : "calca-jeans.jpg",
"stock" : 100
},
{
"id" : 2,
"name" : "Camisa Polo Masculina",
"description" : "sizes P M G GG",
"price" : 1.00,
"amount_off" : 24,
"price_off" : 0.89,
"image" : "camiseta-polo.jpg",
"stock" : 200
},
{
"id" : 3,
"name" : "Sapatenis",
"description" : "Sapatenis estiloso",
"price" : 129.90,
"amount_off" : 24,
"price_off" : 89.99,
"image" : "sapatenis.jpg",
"stock" : 100
},
{
"id" : 4,
"name" : "Bermuda Masculina",
"description" : "Bermuda jeans masculina, sizes P M G ",
"price" : 29.90,
"amount_off" : 24,
"price_off" : 9.99,
"image" : "bermuda.jpg",
"stock" : 100
},
{
"id" : 5,
"name" : "Calça Moletom",
"description" : "sizes P M G GG",
"price" : 78.90,
"amount_off" : 24,
"price_off" : 60.00,
"image" : "calca-moletom.jpg",
"stock" : 100
},
{
"id" : 6,
"name" : "Jaqueta de couro",
"description" : "sizes P M G GG",
"price" : 279.90,
"amount_off" : 24,
"price_off" : 10.99,
"image" : "jaqueta-couro.jpg",
"stock" : 100
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment