Adyen · JSON Structure

Transfers Capital Grant Info Structure

CapitalGrantInfo schema from Adyen API

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

CapitalGrantInfo is a JSON Structure definition published by Adyen, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

counterparty grantAccountId grantOfferId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/transfers-capital-grant-info-structure.json",
  "description": "CapitalGrantInfo schema from Adyen API",
  "type": "object",
  "properties": {
    "counterparty": {
      "description": "An object containing the details of the receiving party of the grant. Setting either an `accountHolderId`, `balanceAccountId`, or both is required.",
      "$ref": "#/components/schemas/Counterparty"
    },
    "grantAccountId": {
      "description": "The identifier of the grant account used for the grant.",
      "type": "string"
    },
    "grantOfferId": {
      "description": "The identifier of the grant offer that has been selected and from which the grant details will be used.",
      "type": "string"
    }
  },
  "required": [
    "grantAccountId",
    "grantOfferId"
  ],
  "name": "CapitalGrantInfo"
}