Synctera · Schema

additional_owner_data

Contains additional information about the relationship.

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
percent_ownership number Percentage ownership of the related business.
View JSON Schema on GitHub

JSON Schema

synctera-additional-owner-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/additional_owner_data",
  "title": "additional_owner_data",
  "description": "Contains additional information about the relationship.",
  "properties": {
    "percent_ownership": {
      "description": "Percentage ownership of the related business.",
      "example": 35.75,
      "exclusiveMinimum": true,
      "format": "double",
      "maximum": 100,
      "minimum": 0,
      "type": "number"
    }
  },
  "required": [
    "percent_ownership"
  ],
  "type": "object"
}