Chime · Schema

ChimeTransaction

Schema for a Chime bank account transaction record.

FintechNeobankBankingChecking AccountsSavings AccountsEarly Paycheck AccessCredit BuildingPeer-to-Peer PaymentsConsumer Banking

Properties

Name Type Description
id string Unique identifier for the transaction
account_id string ID of the account the transaction belongs to
amount number Transaction amount in USD. Negative for debits/withdrawals, positive for credits/deposits.
description string Merchant or transaction description
date string Date the transaction posted (ISO 8601 format: YYYY-MM-DD)
type string Type of transaction
status string Settlement status of the transaction
merchant_name string Name of the merchant where the transaction occurred
category string Spending category for the transaction
View JSON Schema on GitHub

JSON Schema

chime-transaction-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/chime/main/json-schema/chime-transaction-schema.json",
  "title": "ChimeTransaction",
  "description": "Schema for a Chime bank account transaction record.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the transaction"
    },
    "account_id": {
      "type": "string",
      "description": "ID of the account the transaction belongs to"
    },
    "amount": {
      "type": "number",
      "description": "Transaction amount in USD. Negative for debits/withdrawals, positive for credits/deposits."
    },
    "description": {
      "type": "string",
      "description": "Merchant or transaction description"
    },
    "date": {
      "type": "string",
      "format": "date",
      "description": "Date the transaction posted (ISO 8601 format: YYYY-MM-DD)"
    },
    "type": {
      "type": "string",
      "description": "Type of transaction",
      "enum": ["debit", "credit", "transfer"]
    },
    "status": {
      "type": "string",
      "description": "Settlement status of the transaction",
      "enum": ["pending", "posted"]
    },
    "merchant_name": {
      "type": "string",
      "description": "Name of the merchant where the transaction occurred"
    },
    "category": {
      "type": "string",
      "description": "Spending category for the transaction"
    }
  },
  "required": ["id", "account_id", "amount", "date", "type", "status"],
  "additionalProperties": false
}