Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Created February 14, 2024 15:12
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 danielschmitz/f48f70a00f0959506ec0c4ffd66d8440 to your computer and use it in GitHub Desktop.
Save danielschmitz/f48f70a00f0959506ec0c4ffd66d8440 to your computer and use it in GitHub Desktop.
{
"users": [
{
"email": "admin@admin.com",
"password": "$2a$10$M5BnnhfAetqcjs475.rlKOALrO//P6QI3IPjdddTQ8ZDHaXHPxZ4K",
"name": "admin",
"phone": "123123",
"id": 1
}
],
"categories": [
{
"id": 1,
"name": "Meat"
},
{
"id": 2,
"name": "Vegetables"
},
{
"id": 3,
"name": "Dairy"
}
],
"products": [
{
"id": 101,
"name": "Beef",
"supplier": "Maranata",
"categoryId": 1
},
{
"id": 102,
"name": "Tomatoes",
"supplier": "",
"categoryId": 2
},
{
"id": 103,
"name": "Milk",
"supplier": "Porto Alegre",
"categoryId": 3
}
],
"stock": [
{
"id": 1001,
"productId": 101,
"quantity": 50,
"expires": "2023-08-31",
"price": 10.99,
"added": "2023-08-01"
},
{
"id": 1002,
"productId": 102,
"quantity": 100,
"expires": "2023-08-25",
"price": 2.49,
"added": "2023-08-02"
},
{
"id": 1003,
"productId": 103,
"quantity": 20,
"expires": "2023-09-10",
"price": 1.99,
"added": "2023-08-05"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment