Synctera · Schema

additional_data

Contains additional information about the relationship.

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
title string The professional role or position the person holds at the related organization.
View JSON Schema on GitHub

JSON Schema

synctera-additional-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/additional_data",
  "title": "additional_data",
  "description": "Contains additional information about the relationship.",
  "properties": {
    "title": {
      "description": "The professional role or position the person holds at the related organization.",
      "enum": [
        "OFFICER",
        "DIRECTOR"
      ],
      "format": "enum",
      "type": "string"
    }
  },
  "required": [
    "title"
  ],
  "type": "object"
}