Synctera · Schema

Credit application details

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
application_details object Details about the applicant. The exact schema is to be determined with your bank.
status object
View JSON Schema on GitHub

JSON Schema

synctera-application-patch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/application_patch",
  "title": "Credit application details",
  "properties": {
    "application_details": {
      "description": "Details about the applicant. The exact schema is to be determined with your bank.",
      "example": {
        "annual_salary": 50000,
        "fico_score": 700
      },
      "type": "object"
    },
    "status": {
      "$ref": "#/components/schemas/application_status"
    }
  },
  "type": "object"
}