Created
September 13, 2024 21:06
-
-
Save galrito/e5474c4e746ca33df5bf283ec3c72da5 to your computer and use it in GitHub Desktop.
JSONServer database for use as an example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"products": [ | |
{ | |
"id": 1, | |
"name": "Product number one", | |
"price": 2.56 | |
}, | |
{ | |
"id": 2, | |
"name": "Product number two", | |
"price": 3 | |
}, | |
{ | |
"id": 3, | |
"name": "Product number three", | |
"price": 1.4 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment