Properties
| Name | Type | Description |
|---|---|---|
| counterparty | object | An object containing the details of the receiving party of the grant. Setting either an `accountHolderId`, `balanceAccountId`, or both is required. |
| grantAccountId | string | The identifier of the grant account used for the grant. |
| grantOfferId | string | The identifier of the grant offer that has been selected and from which the grant details will be used. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CapitalGrantInfo",
"title": "CapitalGrantInfo",
"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"
],
"type": "object"
}