Apideck · Schema

Credit or Debit

Whether the amount is a credit or debit.

IntegrationsUnified API
View JSON Schema on GitHub

JSON Schema

apideck-creditordebit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditOrDebit",
  "title": "Credit or Debit",
  "type": "string",
  "description": "Whether the amount is a credit or debit.",
  "x-apideck-enum-id": "accounting.credit_or_debit",
  "enum": [
    "credit",
    "debit"
  ],
  "example": "debit"
}