Emburse · Schema
APIAccount
Emburse APIAccount schema
Expense ManagementAP AutomationCorporate CardsVirtual CardsReceipt CaptureReimbursementInvoice ProcessingFinanceFinTech
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| url | string | |
| name | string | |
| number | string | |
| ledger_balance | number | |
| available_balance | number | |
| currency_code | string | |
| minimum_balance | string | |
| available_credit | string | |
| pending_credits | number | |
| credit_limit | number | |
| funding_source | object | |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/emburse/refs/heads/main/json-schema/emburse-account.json",
"title": "APIAccount",
"description": "Emburse APIAccount schema",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"url": {
"type": "string",
"readOnly": true
},
"name": {
"type": "string",
"readOnly": true
},
"number": {
"type": "string",
"readOnly": true
},
"ledger_balance": {
"type": "number",
"multipleOf": 0.01,
"maximum": 100000000000000,
"minimum": -100000000000000,
"readOnly": true
},
"available_balance": {
"type": "number",
"multipleOf": 0.01,
"maximum": 100000000000000,
"minimum": -100000000000000,
"readOnly": true
},
"currency_code": {
"type": "string",
"readOnly": true
},
"minimum_balance": {
"type": "string",
"readOnly": true
},
"available_credit": {
"type": "string",
"readOnly": true
},
"pending_credits": {
"type": "number",
"multipleOf": 0.01,
"maximum": 100000000000000,
"minimum": -100000000000000,
"readOnly": true
},
"credit_limit": {
"type": "number",
"multipleOf": 0.01,
"maximum": 100000000000000,
"minimum": -100000000000000,
"readOnly": true
},
"funding_source": {
"type": "object",
"properties": {
"description": {
"type": "string",
"readOnly": true,
"maxLength": 255
},
"name": {
"type": "string",
"readOnly": true,
"maxLength": 255
},
"number": {
"type": "string",
"readOnly": true
},
"is_verified": {
"type": "boolean",
"readOnly": true
}
},
"required": [
"description",
"name"
],
"readOnly": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
}
}
}