Verifone · Schema

BundleAndPriceAndData

BundleAndPriceAndData from Verifone Order API

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
packageBundleId object
adjustedPrices array
additionalPackageData array Input data required to configure the package. For example some packages require a merchant ID
View JSON Schema on GitHub

JSON Schema

order-service-api-bundleandpriceanddata.json Raw ↑
{
  "$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"
  ]
}