Modern Treasury · Schema

ledger_account_update_request

FintechPaymentsACHWiresTreasury

Properties

Name Type Description
name string The name of the ledger account.
description string The description of the ledger account.
metadata object Additional data represented as key-value pairs. Both the key and value must be strings.
external_id string An optional user-defined 180 character unique identifier.
View JSON Schema on GitHub

JSON Schema

modern-treasury-ledger-account-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ledger_account_update_request",
  "title": "ledger_account_update_request",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the ledger account."
    },
    "description": {
      "type": "string",
      "description": "The description of the ledger account.",
      "nullable": true
    },
    "metadata": {
      "type": "object",
      "description": "Additional data represented as key-value pairs. Both the key and value must be strings.",
      "additionalProperties": {
        "type": "string"
      },
      "example": {
        "key": "value",
        "foo": "bar",
        "modern": "treasury"
      }
    },
    "external_id": {
      "type": "string",
      "description": "An optional user-defined 180 character unique identifier.",
      "nullable": true
    }
  }
}