Example Products Database JSON File
Share
This is an example of Products Database JSON file which you might see used to store configuration settings to setup your system. It might also be used to contain products record information which can be easily shared across components using the simple JSON format.
Also: See more JSON examples.
{
"name":"Product",
"properties":
{
"id":
{
"type":"number",
"description":"Product identifier",
"required":true
},
"name":
{
"description":"Name of the product",
"type":"string",
"required":true
},
"price":
{
"type":"number",
"minimum":0,
"required":true
},
"tags":
{
"type":"array",
"items":
{
"type":"string"
}
}
}
}