Untitled
unknown
plain_text
3 years ago
885 B
16
Indexable
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"shop": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"productID": {
"type": "integer"
},
"productName": {
"type": "string"
},
"price": {
"type": "number"
},
"tags": {
"type": "array",
"items": [
{
"type": "string"
},
{
"type": "string"
}
]
}
},
"required": [
"productID",
"productName",
"price",
"tags"
]
}
]
}
},
"required": [
"shop"
]
}Editor is loading...