{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProductSummary", "title": "ProductSummary", "type": "object", "properties": { "productCode": { "type": "string" }, "productName": { "type": "string" }, "lineOfBusiness": { "type": "string" }, "availableStates": { "type": "array", "items": { "type": "string" } }, "effectiveDate": { "type": "string", "format": "date" } } }