{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Rate1", "title": "Rate1", "required": [ "shippingPrice", "insurancePrice" ], "type": "object", "description": "Rate cost information.", "properties": { "shippingPrice": { "$ref": "#/components/schemas/ShippingPrice1" }, "insurancePrice": { "$ref": "#/components/schemas/InsurancePrice" } }, "example": { "shippingPrice": { "value": 284.02, "currency": "USD" }, "insurancePrice": { "value": 0, "currency": "USD" } } }