Properties
| Name | Type | Description |
|---|---|---|
| company_id | string | Company ID |
| is_fbo | boolean | Whether the company is a FBO; based on the company ID prefix |
| date | string | The date for the limit view (ISO format) |
| program_limit_per_transaction | object | Program transaction limits |
| daily_limit | object | Daily limits with progress |
| monthly_limit | object | Monthly limits with progress |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/transfer_limit_item",
"title": "Transfer Limit Item",
"type": "object",
"properties": {
"company_id": {
"description": "Company ID",
"type": "string"
},
"is_fbo": {
"description": "Whether the company is a FBO; based on the company ID prefix",
"type": "boolean"
},
"date": {
"description": "The date for the limit view (ISO format)",
"type": "string",
"format": "date"
},
"program_limit_per_transaction": {
"description": "Program transaction limits",
"$ref": "#/components/schemas/directional_limits"
},
"daily_limit": {
"description": "Daily limits with progress",
"$ref": "#/components/schemas/directional_limits"
},
"monthly_limit": {
"description": "Monthly limits with progress",
"$ref": "#/components/schemas/directional_limits"
}
},
"required": [
"company_id",
"is_fbo",
"date",
"program_limit_per_transaction",
"daily_limit",
"monthly_limit"
]
}