Synctera · Schema

Disclosure

Represents a disclosure

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
creation_time string
event_type string
id string Disclosure ID
last_updated_time string
timestamp string Date of disclosure
type string Disclosure Type
version string Disclosure Version
View JSON Schema on GitHub

JSON Schema

synctera-disclosure1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/disclosure1",
  "title": "Disclosure",
  "description": "Represents a disclosure",
  "properties": {
    "creation_time": {
      "example": "2021-05-01T23:59:59Z",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "event_type": {
      "enum": [
        "DISPLAYED",
        "VIEWED",
        "ACKNOWLEDGED"
      ],
      "example": "VIEWED",
      "type": "string"
    },
    "id": {
      "description": "Disclosure ID",
      "example": "48c2a7f2-5edc-41e6-9f2a-fefac8e94659",
      "format": "uuid",
      "type": "string"
    },
    "last_updated_time": {
      "example": "2021-05-01T23:59:59Z",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "timestamp": {
      "description": "Date of disclosure",
      "example": "2021-05-01T23:59:59Z",
      "format": "date-time",
      "type": "string"
    },
    "type": {
      "description": "Disclosure Type",
      "enum": [
        "ACH_AUTHORIZATION",
        "CARDHOLDER_AGREEMENT",
        "E_SIGN",
        "KYC_DATA_COLLECTION",
        "PRIVACY_NOTICE",
        "REG_CC",
        "REG_DD",
        "REG_E",
        "TERMS_AND_CONDITIONS"
      ],
      "example": "REG_DD",
      "type": "string"
    },
    "version": {
      "description": "Disclosure Version",
      "example": "v1.1",
      "type": "string"
    }
  },
  "required": [
    "type",
    "version",
    "timestamp",
    "event_type"
  ],
  "type": "object"
}