Lithic · Schema

External Payment Event

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
amount integer
type object
result object
detailed_results array
created string
token string
memo string
effective_date string
View JSON Schema on GitHub

JSON Schema

lithic-external-payment-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/external_payment_event",
  "title": "External Payment Event",
  "type": "object",
  "properties": {
    "amount": {
      "type": "integer"
    },
    "type": {
      "$ref": "#/components/schemas/external_payment_event_type"
    },
    "result": {
      "$ref": "#/components/schemas/transaction_result"
    },
    "detailed_results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/detailed_results"
      }
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "token": {
      "type": "string",
      "format": "uuid"
    },
    "memo": {
      "type": "string"
    },
    "effective_date": {
      "type": "string",
      "format": "date"
    }
  },
  "required": [
    "amount",
    "type",
    "result",
    "detailed_results",
    "created",
    "token",
    "memo",
    "effective_date"
  ]
}