> ## Documentation Index
> Fetch the complete documentation index at: https://hevninc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Read the KYB graph

> Every entity this user owns — linked and unlinked — with the ownership edges, resolved documents and the flow's status, in one request.



## OpenAPI

````yaml /openapi.json get /api/v1/kyb/b2b/kyb/graph
openapi: 3.1.0
info:
  title: HEVN API
  description: Backend API for HEVN mobile neobank
  version: 0.1.2
servers: []
security: []
paths:
  /api/v1/kyb/b2b/kyb/graph:
    get:
      tags:
        - B2B
        - kyb
      summary: Read the KYB graph
      description: >-
        Every entity this user owns — linked and unlinked — with the ownership
        edges, resolved documents and the flow's status, in one request.
      operationId: get_kyb_graph_package_alias_api_v1_kyb_b2b_kyb_graph_get
      parameters:
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KybGraphResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    KybGraphResponse:
      properties:
        rootEntityId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Rootentityid
          description: The entity the KYB application is about.
        kybStatus:
          $ref: '#/components/schemas/KycStatus'
        kybStatusByRails:
          additionalProperties:
            $ref: '#/components/schemas/KycStatus'
          propertyNames:
            $ref: '#/components/schemas/BankRail'
          type: object
          title: Kybstatusbyrails
        entities:
          items:
            $ref: '#/components/schemas/EntityData'
          type: array
          title: Entities
          description: >-
            EVERY entity this user owns — the ones the ownership walk reaches
            and the ones it does not. Splitting them is what made half-linked
            people invisible to the client that created them; deciding what to
            show is the client's job, and it needs the whole set to do it.
        relationships:
          items:
            $ref: '#/components/schemas/EntityRelationshipDraftData'
          type: array
          title: Relationships
        pendingShareholders:
          items:
            $ref: '#/components/schemas/KybPendingShareholderData'
          type: array
          title: Pendingshareholders
          description: >-
            Invited owners who have not consented yet. Only their HEVN login
            email and relationship status are disclosed.
        documents:
          additionalProperties:
            items:
              $ref: '#/components/schemas/DocumentDraftInfo'
            type: array
          type: object
          title: Documents
          description: >-
            Resolved documents (name, signed link) keyed by entity id. Each
            ``type`` is the slot the file is filed in, which is what the admin
            console and the submission gate read; a file filed in two slots is
            reported once per slot.
        requiredDocuments:
          items:
            type: string
          type: array
          title: Requireddocuments
          description: >-
            Company document slots the draft flow asks for.
            Jurisdiction-dependent — a US company is also asked for its IRS EIN
            letter.
        requiredShareholderDocuments:
          items:
            type: string
          type: array
          title: Requiredshareholderdocuments
          description: >-
            Document types every shareholder needs. Enforced at submit, so a
            client that cannot read the list here can only discover it by being
            refused.
        corporateAuthorityDocumentsRequired:
          type: boolean
          title: Corporateauthoritydocumentsrequired
          description: >-
            Whether Authorization to Act and Authority to Bind documents are
            required. False when the account email belongs to a director.
          default: true
        missingFields:
          items:
            type: string
          type: array
          title: Missingfields
          description: >-
            What submission is still waiting for: the required fields ``POST
            /kyb/submit`` enforces, plus the document slots it asks for but does
            not block on. Without it here the flow could only discover the gap
            by being refused.
        isReadyForSubmission:
          type: boolean
          title: Isreadyforsubmission
          default: false
        uboKycLinks:
          items:
            $ref: '#/components/schemas/UboKycLink'
          type: array
          title: Ubokyclinks
        comment:
          anyOf:
            - type: string
            - type: 'null'
          title: Comment
        updatedAt:
          type: string
          format: date-time
          title: Updatedat
      type: object
      required:
        - kybStatus
        - updatedAt
      title: KybGraphResponse
      description: >-
        The customer-facing view of one user's KYB graph.


        Everything the KYB flow needs in one read, and nothing shaped like a

        questionnaire: the client edits entities and edges, so that is what it
        is

        given. The admin's richer, projection-shaped view lives in

        :class:`KybDraftResponse` and is built by a different service.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    KycStatus:
      type: string
      enum:
        - not_started
        - requested
        - incorporating
        - pending
        - under_review
        - approved
        - rejected
      title: KycStatus
      description: KYC verification status.
    EntityData:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        referenceId:
          anyOf:
            - type: string
            - type: 'null'
          title: Referenceid
        creatorUserId:
          type: string
          format: uuid
          title: Creatoruserid
        firstName:
          anyOf:
            - type: string
            - type: 'null'
          title: Firstname
        middleName:
          anyOf:
            - type: string
            - type: 'null'
          title: Middlename
        lastName:
          anyOf:
            - type: string
            - type: 'null'
          title: Lastname
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        phone:
          anyOf:
            - type: string
            - type: 'null'
          title: Phone
        country:
          anyOf:
            - $ref: '#/components/schemas/CountryCode'
            - type: 'null'
        dateOfBirth:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Dateofbirth
        birthCountry:
          anyOf:
            - $ref: '#/components/schemas/CountryCode'
            - type: 'null'
        nationalities:
          items:
            $ref: '#/components/schemas/CountryCode'
          type: array
          title: Nationalities
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
          deprecated: true
        legalName:
          anyOf:
            - type: string
            - type: 'null'
          title: Legalname
        tradeName:
          anyOf:
            - type: string
            - type: 'null'
          title: Tradename
        registrationNumber:
          anyOf:
            - type: string
            - type: 'null'
          title: Registrationnumber
        taxId:
          anyOf:
            - type: string
            - type: 'null'
          title: Taxid
        address:
          anyOf:
            - $ref: '#/components/schemas/EntityAddress'
            - type: 'null'
        documents:
          additionalProperties:
            items:
              type: string
              format: uuid
            type: array
          type: object
          title: Documents
        identityDocuments:
          items:
            $ref: '#/components/schemas/EntityIdentityDocument'
          type: array
          title: Identitydocuments
        companyDdData:
          $ref: '#/components/schemas/CompanyDueDiligenceData-Output'
        usageData:
          $ref: '#/components/schemas/EntityUsageData'
        acceptedTermsAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Acceptedtermsat
        corporateAuthorityDocumentIds:
          $ref: '#/components/schemas/CorporateAuthorityDocumentIds'
          description: >-
            Expose typed authority IDs without creating a second source of
            truth.
          readOnly: true
      type: object
      required:
        - creatorUserId
        - corporateAuthorityDocumentIds
      title: EntityData
    EntityRelationshipDraftData:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        sourceEntityId:
          type: string
          format: uuid
          title: Sourceentityid
        targetEntityId:
          type: string
          format: uuid
          title: Targetentityid
        ownershipPercentage:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Ownershippercentage
        hasControl:
          type: boolean
          title: Hascontrol
        isDirector:
          type: boolean
          title: Isdirector
        isSigner:
          type: boolean
          title: Issigner
        title:
          anyOf:
            - type: string
            - type: 'null'
          title: Title
        status:
          $ref: '#/components/schemas/EntityRelationshipStatus'
          default: active
        verifications:
          items:
            $ref: '#/components/schemas/EntityProviderVerificationData'
          type: array
          title: Verifications
      type: object
      required:
        - id
        - sourceEntityId
        - targetEntityId
        - hasControl
        - isDirector
        - isSigner
      title: EntityRelationshipDraftData
    KybPendingShareholderData:
      properties:
        relationshipId:
          type: string
          format: uuid
          title: Relationshipid
        email:
          type: string
          format: email
          title: Email
        ownershipPercentage:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Ownershippercentage
        hasControl:
          type: boolean
          title: Hascontrol
        isDirector:
          type: boolean
          title: Isdirector
        isSigner:
          type: boolean
          title: Issigner
        status:
          type: string
          const: pending
          title: Status
      type: object
      required:
        - relationshipId
        - email
        - hasControl
        - isDirector
        - isSigner
        - status
      title: KybPendingShareholderData
      description: Editable pending owner card without any invited entity profile fields.
    DocumentDraftInfo:
      properties:
        id:
          type: string
          title: Id
        type:
          $ref: '#/components/schemas/DocumentType'
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        originName:
          anyOf:
            - type: string
            - type: 'null'
          title: Originname
        link:
          anyOf:
            - type: string
            - type: 'null'
          title: Link
        createdAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Createdat
        issueDate:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Issuedate
        expiryDate:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Expirydate
        content:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Content
        dakotaId:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider Document Id
        signature:
          anyOf:
            - $ref: '#/components/schemas/DocumentSignatureInfo'
            - type: 'null'
          description: >-
            Signing state for a HEVN-generated document. ``null`` when the
            document carries no signature blocks, so a plain upload stays plain.
            A stored document is not a signed one — read the state.
      type: object
      required:
        - id
        - type
      title: DocumentDraftInfo
      description: Document info in response.
    UboKycLink:
      properties:
        entityId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Entityid
        provider:
          $ref: '#/components/schemas/FiatProvider'
          default: conduit_fiat
        email:
          anyOf:
            - type: string
            - type: 'null'
          title: Email
        name:
          type: string
          title: Name
        status:
          type: string
          title: Status
        link:
          anyOf:
            - type: string
            - type: 'null'
          title: Link
        expiresAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expiresat
      type: object
      required:
        - name
        - status
      title: UboKycLink
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    CountryCode:
      type: string
      enum:
        - AF
        - AX
        - AL
        - DZ
        - AS
        - AD
        - AO
        - AI
        - AQ
        - AG
        - AR
        - AM
        - AW
        - AU
        - AT
        - AZ
        - BS
        - BH
        - BD
        - BB
        - BY
        - BE
        - BZ
        - BJ
        - BM
        - BT
        - BO
        - BQ
        - BA
        - BW
        - BV
        - BR
        - IO
        - BN
        - BG
        - BF
        - BI
        - CV
        - KH
        - CM
        - CA
        - KY
        - CF
        - TD
        - CL
        - CN
        - CX
        - CC
        - CO
        - KM
        - CG
        - CD
        - CK
        - CR
        - CI
        - HR
        - CU
        - CW
        - CY
        - CZ
        - DK
        - DJ
        - DM
        - DO
        - EC
        - EG
        - SV
        - GQ
        - ER
        - EE
        - SZ
        - ET
        - FK
        - FO
        - FJ
        - FI
        - FR
        - GF
        - PF
        - TF
        - GA
        - GM
        - GE
        - DE
        - GH
        - GI
        - GR
        - GL
        - GD
        - GP
        - GU
        - GT
        - GG
        - GN
        - GW
        - GY
        - HT
        - HM
        - VA
        - HN
        - HK
        - HU
        - IS
        - IN
        - ID
        - IR
        - IQ
        - IE
        - IM
        - IL
        - IT
        - JM
        - JP
        - JE
        - JO
        - KZ
        - KE
        - KI
        - KP
        - KR
        - KW
        - KG
        - LA
        - LV
        - LB
        - LS
        - LR
        - LY
        - LI
        - LT
        - LU
        - MO
        - MG
        - MW
        - MY
        - MV
        - ML
        - MT
        - MH
        - MQ
        - MR
        - MU
        - YT
        - MX
        - FM
        - MD
        - MC
        - MN
        - ME
        - MS
        - MA
        - MZ
        - MM
        - NA
        - NR
        - NP
        - NL
        - NC
        - NZ
        - NI
        - NE
        - NG
        - NU
        - NF
        - MK
        - MP
        - 'NO'
        - OM
        - PK
        - PW
        - PS
        - PA
        - PG
        - PY
        - PE
        - PH
        - PN
        - PL
        - PT
        - PR
        - QA
        - RE
        - RO
        - RU
        - RW
        - BL
        - SH
        - KN
        - LC
        - MF
        - PM
        - VC
        - WS
        - SM
        - ST
        - SA
        - SN
        - RS
        - SC
        - SL
        - SG
        - SX
        - SK
        - SI
        - SB
        - SO
        - ZA
        - GS
        - SS
        - ES
        - LK
        - SD
        - SR
        - SJ
        - SE
        - CH
        - SY
        - TW
        - TJ
        - TZ
        - TH
        - TL
        - TG
        - TK
        - TO
        - TT
        - TN
        - TR
        - TM
        - TC
        - TV
        - UG
        - UA
        - AE
        - GB
        - US
        - UM
        - UY
        - UZ
        - VU
        - VE
        - VN
        - VG
        - VI
        - WF
        - EH
        - YE
        - ZM
        - ZW
      title: CountryCode
      description: ISO 3166-1 alpha-2 country codes.
    EntityAddress:
      properties:
        streetAddress:
          anyOf:
            - type: string
            - type: 'null'
          title: Streetaddress
        city:
          anyOf:
            - type: string
            - type: 'null'
          title: City
        country:
          anyOf:
            - $ref: '#/components/schemas/CountryCode'
            - type: 'null'
        addressLine2:
          anyOf:
            - type: string
            - type: 'null'
          title: Addressline2
        state:
          anyOf:
            - type: string
            - type: 'null'
          title: State
        zip:
          anyOf:
            - type: string
            - type: 'null'
          title: Zip
      type: object
      title: EntityAddress
    EntityIdentityDocument:
      properties:
        type:
          anyOf:
            - $ref: '#/components/schemas/FiatIdentityDocumentType'
            - type: 'null'
        issuingCountry:
          anyOf:
            - $ref: '#/components/schemas/CountryCode'
            - type: 'null'
        number:
          anyOf:
            - type: string
            - type: 'null'
          title: Number
      type: object
      title: EntityIdentityDocument
      description: |-
        Issuing metadata for one identity document held by a person entity.

        The scanned pages live in ``Entity.documents`` keyed by upload slot
        (``passport_front``, ``id_card_back``, …); this carries what the slot
        cannot express and what providers ask for: the document's own type, the
        country that issued it and its number.
    CompanyDueDiligenceData-Output:
      properties:
        entityType:
          anyOf:
            - type: string
            - type: 'null'
          title: Entitytype
        entityTypeDescription:
          anyOf:
            - type: string
            - type: 'null'
          title: Entitytypedescription
        incorporationDate:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Incorporationdate
        industry:
          anyOf:
            - type: string
            - type: 'null'
          title: Industry
        websites:
          items:
            type: string
          type: array
          title: Websites
        operatingCountries:
          anyOf:
            - items:
                $ref: '#/components/schemas/CountryCode'
              type: array
            - type: 'null'
          title: Operatingcountries
        expectedMonthlyVolumeUsd:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Expectedmonthlyvolumeusd
        estimatedAnnualRevenue:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Estimatedannualrevenue
        hasUsBank:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Hasusbank
        deniedUsBank:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Deniedusbank
        hasPep:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Haspep
        bizAdverse:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Bizadverse
        ownersAdverse:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Ownersadverse
        publicListed:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Publiclisted
        txPerMonth:
          anyOf:
            - $ref: '#/components/schemas/FiatTransactionCount'
            - type: 'null'
        usesBlockchain:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Usesblockchain
        revenueCovers:
          anyOf:
            - $ref: '#/components/schemas/RevenueCoverage'
            - type: 'null'
        institutionalInvestors:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Institutionalinvestors
        isRegulated:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Isregulated
      type: object
      title: CompanyDueDiligenceData
    EntityUsageData:
      properties:
        business:
          anyOf:
            - type: string
            - type: 'null'
          title: Business
        businessIndustry:
          anyOf:
            - type: string
              pattern: ^\d{6}$
            - type: 'null'
          title: Businessindustry
        businessType:
          anyOf:
            - type: string
            - type: 'null'
          title: Businesstype
        businessTypeDetails:
          anyOf:
            - type: string
            - type: 'null'
          title: Businesstypedetails
        verifierRole:
          anyOf:
            - type: string
            - type: 'null'
          title: Verifierrole
        sourceOfFunds:
          anyOf:
            - type: string
            - type: 'null'
          title: Sourceoffunds
        sourceOfFundsDetails:
          anyOf:
            - type: string
            - type: 'null'
          title: Sourceoffundsdetails
        purposeOfFunds:
          anyOf:
            - type: string
            - type: 'null'
          title: Purposeoffunds
        purposeOfFundsDetails:
          anyOf:
            - type: string
            - type: 'null'
          title: Purposeoffundsdetails
        flowOfFunds:
          anyOf:
            - type: string
            - type: 'null'
          title: Flowoffunds
        complianceScreening:
          anyOf:
            - type: string
            - type: 'null'
          title: Compliancescreening
        handlesCustomerFunds:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Handlescustomerfunds
        actingAsIntermediary:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Actingasintermediary
        sanctionedCountryOperations:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Sanctionedcountryoperations
        highRiskActivities:
          items:
            type: string
          type: array
          title: Highriskactivities
        depositMethods:
          items:
            type: string
          type: array
          title: Depositmethods
        contactInfo:
          anyOf:
            - type: string
            - type: 'null'
          title: Contactinfo
      type: object
      title: EntityUsageData
    CorporateAuthorityDocumentIds:
      properties:
        authorizationToActDocumentId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Authorizationtoactdocumentid
        authorityToBindDocumentId:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Authoritytobinddocumentid
      type: object
      title: CorporateAuthorityDocumentIds
      description: Canonical authority-document references exposed by the KYB structure.
    EntityRelationshipStatus:
      type: string
      enum:
        - pending
        - active
        - revoked
      title: EntityRelationshipStatus
      description: Consent state for a KYB ownership or authority relationship.
    EntityProviderVerificationData:
      properties:
        id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Id
        provider:
          $ref: '#/components/schemas/FiatProvider'
        externalId:
          anyOf:
            - type: string
            - type: 'null'
          title: Externalid
        status:
          type: string
          title: Status
        kycLink:
          anyOf:
            - type: string
            - type: 'null'
          title: Kyclink
        kycLinkState:
          anyOf:
            - type: string
            - type: 'null'
          title: Kyclinkstate
        kycLinkExpiresAt:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Kyclinkexpiresat
      type: object
      required:
        - provider
        - status
      title: EntityProviderVerificationData
    DocumentType:
      type: string
      enum:
        - certificate_of_incorporation
        - formation_document
        - articles_of_incorporation
        - power_of_attorney
        - corporate_structure
        - company_registry_extract
        - corporate_registry_extract
        - shareholder_registry
        - director_structure
        - proof_of_address
        - utility_bill
        - annual_financial_statements
        - articles_of_association
        - audit_report
        - bank_reference_letter
        - bank_statement
        - banking_details
        - birth_certificate
        - business_license
        - business_plan
        - certificate_of_good_standing
        - crypto_statement
        - credit_report
        - criminal_record_check
        - cv_resume
        - driving_license
        - education_certificate
        - financial_projections
        - investment_statement
        - insurance_policy
        - lease_agreement
        - list_of_authorized_signatories
        - marriage_certificate
        - national_id
        - operating_agreement
        - partnership_agreement
        - professional_license
        - regulatory_license
        - reference_letter
        - register_of_members
        - residence_permit
        - shareholding_structure
        - shareholders_agreement
        - social_security_document
        - source_of_funds_declaration
        - tax_identification_document
        - tax_compliance_form
        - tax_returns
        - payslip
        - pitch_deck
        - savings_statement
        - trade_references
        - vat_registration
        - vendor_contracts
        - visa
        - wealth_statement
        - contract
        - invoice
        - loan_agreement
        - subscription_agreement
        - safe_agreement
        - convertible_note
        - promissory_note
        - marketing_material
        - employment_contract
        - authorization_to_act
        - authority_to_bind
        - income_verification_letter
        - source_of_funds
        - source_of_wealth
        - supporting_document
        - memorandum
        - passport_front
        - passport_back
        - id_card_front
        - id_card_back
        - drivers_license_front
        - drivers_license_back
        - residence_permit_front
        - residence_permit_back
        - other
      title: DocumentType
      description: Open internal document type; providers map it to their own taxonomy.
    DocumentSignatureInfo:
      properties:
        state:
          $ref: '#/components/schemas/DocumentSignatureState'
        signatureRequestId:
          anyOf:
            - type: string
            - type: 'null'
          title: Signaturerequestid
        signerEmails:
          items:
            type: string
          type: array
          title: Signeremails
        lastSignerEmail:
          anyOf:
            - type: string
            - type: 'null'
          title: Lastsigneremail
        testMode:
          type: boolean
          title: Testmode
          default: false
      type: object
      required:
        - state
      title: DocumentSignatureInfo
      description: Typed view of the ``content["hellosign"]`` block for API responses.
    FiatProvider:
      type: string
      enum:
        - swipelux
        - align
        - dakota
        - mcp
        - wirex
        - conduit_fiat
        - conduit_crypto
        - due
      title: FiatProvider
      description: Supported fiat payment providers.
    FiatIdentityDocumentType:
      type: string
      enum:
        - passport
        - id_card
        - drivers_license
        - driver_license
        - residence_permit
        - government_id
        - state_or_provincial_id
        - visa
      title: FiatIdentityDocumentType
      description: Identity document type.
    FiatTransactionCount:
      type: string
      enum:
        - <10
        - 10-50
        - 50-200
        - 200-1,000
        - 1,000+
      title: FiatTransactionCount
      description: Expected monthly transaction-count range declared during KYB.
    RevenueCoverage:
      type: string
      enum:
        - all_operating_expenses
        - most
        - some
        - minimal
      title: RevenueCoverage
      description: Share of operating expenses covered by current business revenue.
    DocumentSignatureState:
      type: string
      enum:
        - draft
        - sent
        - viewed
        - partially_signed
        - signed
        - declined
        - canceled
        - expired
        - invalid
      title: DocumentSignatureState
      description: >-
        Where one generated document stands with the signing provider.


        A document that exists is not a document that is signed: the UI has to
        tell

        a fresh draft from one waiting on a signer from a completed one.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````