PracticePanther · Schema
BankAccount
JSON Schema for the PracticePanther BankAccount resource
LegalLaw Practice ManagementCase ManagementBillingTrust AccountingTime TrackingLegal Tech
Properties
| Name | Type | Description |
|---|---|---|
| guid | string | |
| name | string | |
| description | string | |
| type | string | |
| isDefault | boolean | |
| isArchived | boolean | |
| tenantId | integer | |
| tenant | object | |
| createdDate | string | |
| lastModifiedDate | string | |
| openingBalance | number | |
| quickbooksId | string | |
| quickbooksIsDepositToUndepositedFunds | boolean | |
| isPrintDepositSlips | boolean | If checked, we will add all cash and check payments to these accounts to the deposit slip queue |
| xeroId | string | |
| lawPayAchAccountName | string | |
| lawPayAchAccountId | string | |
| lawPayMerchantAccountName | string | |
| lawPayMerchantAccountId | string | |
| headNoteId | string | |
| status | string | |
| currencyCode | string | |
| accountNumber | string | |
| routingNumber | string | |
| swiftCode | string | |
| accountHolder | string | |
| institution | string | |
| domicileBranch | string | |
| createdBy | object | |
| lastModifiedBy | object | |
| payments | array | |
| firmPayments | array | |
| isDeleted | boolean | |
| isEnabled | boolean | |
| isDirty | boolean | |
| lastReconciledDate | string | |
| trustbooksOnboardingStep | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/practicepanther/main/json-schema/practicepanther-bankaccount-schema.json",
"title": "BankAccount",
"description": "JSON Schema for the PracticePanther BankAccount resource",
"type": "object",
"properties": {
"guid": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"Operating",
"Trust",
"CreditCard"
]
},
"isDefault": {
"type": "boolean"
},
"isArchived": {
"type": "boolean"
},
"tenantId": {
"type": "integer",
"format": "int64"
},
"tenant": {
"$ref": "#/$defs/Tenant"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"lastModifiedDate": {
"type": "string",
"format": "date-time"
},
"openingBalance": {
"type": "number",
"format": "double"
},
"quickbooksId": {
"type": "string"
},
"quickbooksIsDepositToUndepositedFunds": {
"type": "boolean"
},
"isPrintDepositSlips": {
"type": "boolean",
"description": "If checked, we will add all cash and check payments to these accounts to the deposit slip queue"
},
"xeroId": {
"type": "string",
"format": "uuid"
},
"lawPayAchAccountName": {
"type": "string"
},
"lawPayAchAccountId": {
"type": "string"
},
"lawPayMerchantAccountName": {
"type": "string"
},
"lawPayMerchantAccountId": {
"type": "string"
},
"headNoteId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"Created",
"Failed",
"Success",
"Archived"
]
},
"currencyCode": {
"type": "string"
},
"accountNumber": {
"type": "string"
},
"routingNumber": {
"type": "string"
},
"swiftCode": {
"type": "string"
},
"accountHolder": {
"type": "string"
},
"institution": {
"type": "string"
},
"domicileBranch": {
"type": "string"
},
"createdBy": {
"$ref": "#/$defs/User"
},
"lastModifiedBy": {
"$ref": "#/$defs/User"
},
"payments": {
"type": "array",
"items": {
"$ref": "#/$defs/Payment"
}
},
"firmPayments": {
"type": "array",
"items": {
"$ref": "#/$defs/FirmPayment"
}
},
"isDeleted": {
"type": "boolean"
},
"isEnabled": {
"type": "boolean"
},
"isDirty": {
"type": "boolean"
},
"lastReconciledDate": {
"type": "string",
"format": "date-time"
},
"trustbooksOnboardingStep": {
"type": "integer",
"format": "int32"
}
}
}