Lithic · Schema
EventSubscription
A subscription to specific event types.
FinTechBaaSCard IssuingPaymentsEmbedded Finance
Properties
| Name | Type | Description |
|---|---|---|
| description | string | A description of the subscription. |
| disabled | boolean | Whether the subscription is disabled. |
| event_types | nullarray | |
| token | string | Globally unique identifier. |
| url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventSubscription",
"title": "EventSubscription",
"description": "A subscription to specific event types.",
"properties": {
"description": {
"description": "A description of the subscription.",
"type": "string"
},
"disabled": {
"description": "Whether the subscription is disabled.",
"type": "boolean"
},
"event_types": {
"items": {
"$ref": "#/components/schemas/event_type"
},
"type": [
"null",
"array"
]
},
"token": {
"description": "Globally unique identifier.",
"example": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga1",
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"description",
"disabled",
"token",
"url"
],
"type": "object"
}