Microsoft Dynamics NAV · Schema
Account
Business ManagementDynamics NAVERPFinanceInventoryMicrosoftNavision
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| number | string | The account number |
| displayName | string | The account display name |
| category | string | The account category |
| subCategory | string | The account subcategory |
| blocked | boolean | Whether the account is blocked |
| accountType | string | The account type |
| directPosting | boolean | Whether direct posting is allowed |
| netChange | number | The net change |
| consolidationTranslationMethod | string | |
| consolidationDebitAccount | string | |
| consolidationCreditAccount | string | |
| lastModifiedDateTime | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Account",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"number": {
"type": "string",
"description": "The account number"
},
"displayName": {
"type": "string",
"description": "The account display name"
},
"category": {
"type": "string",
"description": "The account category"
},
"subCategory": {
"type": "string",
"description": "The account subcategory"
},
"blocked": {
"type": "boolean",
"description": "Whether the account is blocked"
},
"accountType": {
"type": "string",
"description": "The account type"
},
"directPosting": {
"type": "boolean",
"description": "Whether direct posting is allowed"
},
"netChange": {
"type": "number",
"description": "The net change"
},
"consolidationTranslationMethod": {
"type": "string"
},
"consolidationDebitAccount": {
"type": "string"
},
"consolidationCreditAccount": {
"type": "string"
},
"lastModifiedDateTime": {
"type": "string"
}
}
}