Properties
| Name | Type | Description |
|---|---|---|
| label | string | The label to display for the field. |
| name | string | The name of the field. |
| validation_expression | string | The expression to validate field input. |
| input_type | string | The type of data to input. Determines the keyboard to display. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CurrencyCloudBeneficiaryRequirementField",
"title": "CurrencyCloudBeneficiaryRequirementField",
"type": "object",
"properties": {
"label": {
"type": "string",
"description": "The label to display for the field.",
"readOnly": true,
"writeOnly": false
},
"name": {
"type": "string",
"description": "The name of the field.",
"readOnly": true,
"writeOnly": false
},
"validation_expression": {
"type": "string",
"description": "The expression to validate field input.",
"readOnly": true,
"writeOnly": false
},
"input_type": {
"type": "string",
"description": "The type of data to input. Determines the keyboard to display.",
"readOnly": true,
"writeOnly": false
}
}
}