Adyen · Schema

PaymentInstrumentGroup

PaymentsFinancial ServicesFintech

Properties

Name Type Description
balancePlatform string The unique identifier of the [balance platform](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/get/balancePlatforms/{id}__queryParam_id) to which the payment instrument group belongs.
description string Your description for the payment instrument group, maximum 300 characters.
id string The unique identifier of the payment instrument group.
properties object Properties of the payment instrument group.
reference string Your reference for the payment instrument group, maximum 150 characters.
txVariant string The tx variant of the payment instrument group.
View JSON Schema on GitHub

JSON Schema

adyen-paymentinstrumentgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentInstrumentGroup",
  "title": "PaymentInstrumentGroup",
  "properties": {
    "balancePlatform": {
      "description": "The unique identifier of the [balance platform](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/get/balancePlatforms/{id}__queryParam_id) to which the payment instrument group belongs.",
      "type": "string"
    },
    "description": {
      "description": "Your description for the payment instrument group, maximum 300 characters.",
      "maxLength": 300,
      "type": "string"
    },
    "id": {
      "description": "The unique identifier of the payment instrument group.",
      "type": "string"
    },
    "properties": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "Properties of the payment instrument group.",
      "type": "object"
    },
    "reference": {
      "description": "Your reference for the payment instrument group, maximum 150 characters.",
      "maxLength": 150,
      "type": "string"
    },
    "txVariant": {
      "description": "The tx variant of the payment instrument group.",
      "type": "string"
    }
  },
  "required": [
    "balancePlatform",
    "txVariant"
  ],
  "type": "object"
}