diff --git a/examples/1-basic-concepts/add-milestone/display-schema.json b/examples/1-basic-concepts/add-milestone/display-schema.json index 40be4230..5f1d5e24 100644 --- a/examples/1-basic-concepts/add-milestone/display-schema.json +++ b/examples/1-basic-concepts/add-milestone/display-schema.json @@ -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" + } + } +}