{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProductList", "title": "ProductList", "type": "object", "properties": { "count": { "type": "integer", "example": 1 }, "value": { "type": "array", "items": { "$ref": "#/components/schemas/ProductSummary" } } } }