Stitch · Schema

MoneyAmount

A monetary amount with currency.

AfricaFinancial DataOpen BankingPaymentsUnified APISouth AfricaNigeria

Properties

Name Type Description
quantity string Amount as a string decimal (e.g., "100.00").
currency string ISO 4217 currency code.
View JSON Schema on GitHub

JSON Schema

stitch-moneyamount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MoneyAmount",
  "title": "MoneyAmount",
  "type": "object",
  "description": "A monetary amount with currency.",
  "properties": {
    "quantity": {
      "type": "string",
      "description": "Amount as a string decimal (e.g., \"100.00\")."
    },
    "currency": {
      "type": "string",
      "description": "ISO 4217 currency code.",
      "enum": [
        "ZAR",
        "NGN"
      ]
    }
  }
}