72 lines
1.2 KiB
JSON
72 lines
1.2 KiB
JSON
{
|
|
"authlogin": [
|
|
{
|
|
"id": 1,
|
|
"email": "admin@gmail.com",
|
|
"password": "123",
|
|
"role": "admin"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"email": "employee@gmail.com",
|
|
"password": "123",
|
|
"role": "employee"
|
|
}
|
|
],
|
|
"health-check": {
|
|
"status": "OK"
|
|
},
|
|
"admin": [
|
|
{
|
|
"id": 1,
|
|
"name": "Admin User",
|
|
"email": "adminuser@example.com"
|
|
}
|
|
],
|
|
"employee": [
|
|
{
|
|
"id": 1,
|
|
"name": "Employee User",
|
|
"email": "employeeuser@example.com"
|
|
}
|
|
],
|
|
"products": [
|
|
{
|
|
"id": 1,
|
|
"name": "Product 1",
|
|
"category": "Category 1",
|
|
"price": 100
|
|
},
|
|
{
|
|
"id": 2,
|
|
"name": "Product 2",
|
|
"category": "Category 2",
|
|
"price": 200
|
|
}
|
|
],
|
|
"categories": [
|
|
{
|
|
"id": 1,
|
|
"name": "Category 1"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"name": "Category 2"
|
|
}
|
|
],
|
|
"customers": [
|
|
{
|
|
"id": 1,
|
|
"name": "Customer 1",
|
|
"email": "customer1@example.com",
|
|
"phone": "1234567890"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"name": "Customer 2",
|
|
"email": "customer2@example.com",
|
|
"phone": "0987654321"
|
|
}
|
|
]
|
|
}
|