User: usama@sartography.com clicked save for examples/1-basic-concepts/add-milestone/display-schema.json

This commit is contained in:
sartography-automated-committer 2024-02-13 12:40:01 +00:00
parent 561a1d5605
commit 95043cd87d
1 changed files with 25 additions and 0 deletions

View File

@ -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"
}
}
}