Apideck · Schema

LinkedLedgerAccount

IntegrationsUnified API

Properties

Name Type Description
id string The unique identifier for the account.
name string The name of the account.
nominal_code string The nominal code of the account.
code string The code assigned to the account.
parent_id string The parent ID of the account.
display_id string The display ID of the account.
View JSON Schema on GitHub

JSON Schema

apideck-linkedledgeraccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkedLedgerAccount",
  "title": "LinkedLedgerAccount",
  "type": "object",
  "x-apideck-schema-id": "LinkedLedgerAccount",
  "additionalProperties": false,
  "x-apideck-weights": {
    "id": "medium",
    "nominal_code": "medium",
    "code": "medium",
    "name": "medium",
    "parent_id": "low",
    "display_id": "low"
  },
  "nullable": true,
  "properties": {
    "id": {
      "title": "Account ID",
      "description": "The unique identifier for the account.",
      "type": "string",
      "example": "123456"
    },
    "name": {
      "type": "string",
      "title": "Account Name",
      "description": "The name of the account.",
      "example": "Bank account",
      "nullable": true
    },
    "nominal_code": {
      "type": "string",
      "title": "Nominal Code",
      "description": "The nominal code of the account.",
      "example": "N091",
      "nullable": true
    },
    "code": {
      "type": "string",
      "title": "Code",
      "description": "The code assigned to the account.",
      "example": "453",
      "nullable": true
    },
    "parent_id": {
      "type": "string",
      "title": "Parent ID",
      "description": "The parent ID of the account.",
      "example": "123456",
      "nullable": true
    },
    "display_id": {
      "type": "string",
      "title": "Display ID",
      "description": "The display ID of the account.",
      "example": "123456",
      "nullable": true
    }
  }
}