User: usama@sartography.com clicked save for examples/1-basic-concepts/add-milestone/display-schema.json
This commit is contained in:
parent
561a1d5605
commit
95043cd87d
|
@ -1 +1,26 @@
|
|||
{
|
||||
"title": "Product Catalog Schema",
|
||||
"description": "Schema for product data in a catalog",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"productId": {
|
||||
"type": "integer",
|
||||
"description": "An identifier for the product"
|
||||
},
|
||||
"productName": {
|
||||
"type": "string",
|
||||
"description": "The product name"
|
||||
},
|
||||
"price": {
|
||||
"type": "number",
|
||||
"description": "The cost to the consumer"
|
||||
},
|
||||
"tags": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": "An optional array of identifying tags"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue