{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OrderItemGiftCertificate", "title": "Order Item Gift Certificate", "type": "object", "properties": { "name": { "type": "string", "description": "The item\u02bcs product name." }, "quantity": { "type": "number", "description": "Quantity of this item.", "format": "double" }, "isTaxable": { "type": "boolean", "description": "Whether the item is taxable." }, "amount": { "type": "number", "description": "Price of the item", "format": "double" }, "type": { "type": "string", "description": "Explicitly specifying the gift certificate type" } }, "x-internal": false }