{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://ledger.abivia.com/api/json/currency.schema.json",
  "title": "Currency Request",
  "description": "A currency request",
  "type": "object",
  "properties": {
    "code": {
      "description": "The currency code (typically an ISO 4217 code or cryptocurrency code).",
      "type": "string",
      "pattern": "^[^ \\t\\r\\n*]*$"
    },
    "decimals": {
      "description": "The number of digits to retain after the decimal point. Required when adding a currency.",
      "type": "integer"
    },
    "toCode": {
      "description": "A new currency code (only on update).",
      "type": "string",
      "pattern": "^[^ \\t\\r\\n*]*$"
    }
  },
  "required": ["code"]
}
