Stellar · Schema

KYCStatus

KYC verification status: - not_started: KYC process not yet started - incomplete: KYC process started but not complete - awaiting_ubo: Awaiting Ultimate Beneficial Owner verification - under_review: KYC submission under review - approved: KYC verification approved - rejected: KYC verification rejected - paused: KYC process paused - offboarded: Customer offboarded

BlockchainCryptocurrencyDecentralized ExchangeLedgerPaymentsSmart ContractsWeb3
View JSON Schema on GitHub

JSON Schema

stellar-sdp-kycstatus.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developers.stellar.org/schemas/sdp/KYCStatus.json",
  "title": "KYCStatus",
  "type": "string",
  "description": "KYC verification status:\n- not_started: KYC process not yet started\n- incomplete: KYC process started but not complete\n- awaiting_ubo: Awaiting Ultimate Beneficial Owner verification\n- under_review: KYC submission under review\n- approved: KYC verification approved\n- rejected: KYC verification rejected\n- paused: KYC process paused\n- offboarded: Customer offboarded\n",
  "enum": [
    "not_started",
    "incomplete",
    "awaiting_ubo",
    "under_review",
    "approved",
    "rejected",
    "paused",
    "offboarded"
  ],
  "example": "under_review"
}