Pleo · Schema

Account

This is the GL account this accounting entry line is allocated to. The account code or the account identifier be present if an account has been allocated, or both.

Expense ManagementCompany CardsSpend ManagementReimbursementsAccountingFinTechFinance

Properties

Name Type Description
code string The account code or number.
identifier string The internal account identifier in the accounting system.
View JSON Schema on GitHub

JSON Schema

pleo-account-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "The account code or number.",
      "nullable": true
    },
    "identifier": {
      "type": "string",
      "description": "The internal account identifier in the accounting system.",
      "nullable": true
    }
  },
  "description": "This is the GL account this accounting entry line is allocated to. The account code or the account identifier be present if an account has been allocated, or both.",
  "nullable": true,
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Account"
}