Lithic · Schema

base_transaction

Base class for all transaction types in the ledger service

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
status object The status of the transaction
token string Unique identifier for the transaction
created string ISO 8601 timestamp of when the transaction was created
updated string ISO 8601 timestamp of when the transaction was last updated
View JSON Schema on GitHub

JSON Schema

lithic-base-transaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/base_transaction",
  "title": "base_transaction",
  "description": "Base class for all transaction types in the ledger service",
  "type": "object",
  "properties": {
    "status": {
      "$ref": "#/components/schemas/transaction_status",
      "description": "The status of the transaction"
    },
    "token": {
      "type": "string",
      "description": "Unique identifier for the transaction",
      "format": "uuid"
    },
    "created": {
      "type": "string",
      "description": "ISO 8601 timestamp of when the transaction was created",
      "format": "date-time"
    },
    "updated": {
      "type": "string",
      "description": "ISO 8601 timestamp of when the transaction was last updated",
      "format": "date-time"
    }
  },
  "required": [
    "status",
    "token",
    "created",
    "updated"
  ]
}