{ "$schema": "http://json-schema.org/draft-07/schema#", "id": "/", "title": "Product Catalog", "type": "object", "properties": { "products": { "type": "array", "description": "The products for this status dashboard", "items": { "type": "object", "description": "A Product", "properties": { "title": { "description": "Title of the product.", "type": "string" }, "id": { "description": "Unique ID for the product.", "type": "string" } } } } } }