BundleAndPriceAndData from Verifone Order API
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/order-service-api-bundleandpriceanddata.json", "title": "BundleAndPriceAndData", "description": "BundleAndPriceAndData from Verifone Order API", "type": "object", "properties": { "packageBundleId": { "$ref": "#/components/schemas/PackageBundleId" }, "adjustedPrices": { "type": "array", "maxItems": 50, "items": { "$ref": "#/components/schemas/AdjustedPriceType" } }, "additionalPackageData": { "type": "array", "description": "Input data required to configure the package. For example some packages require a merchant ID", "maxItems": 50, "items": { "$ref": "#/components/schemas/VariableResponseType" } } }, "required": [ "packageBundleId" ] }