Lithic · Schema

ExternalResource

External resource associated with the management operation

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
external_resource_type object
external_resource_token string Token identifying the external resource
external_resource_sub_token string Token identifying the external resource sub-resource
View JSON Schema on GitHub

JSON Schema

lithic-external-resource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/external_resource",
  "title": "ExternalResource",
  "type": "object",
  "required": [
    "external_resource_type",
    "external_resource_token"
  ],
  "properties": {
    "external_resource_type": {
      "$ref": "#/components/schemas/external_resource_type"
    },
    "external_resource_token": {
      "type": "string",
      "description": "Token identifying the external resource"
    },
    "external_resource_sub_token": {
      "type": "string",
      "description": "Token identifying the external resource sub-resource"
    }
  },
  "description": "External resource associated with the management operation",
  "additionalProperties": false
}