Skip to content

Venue verification

Verification is how a venue proves who it is. It covers all entity types — schools, NGOs, government offices, media organizations, companies, and parks all go through the same flow, not just hospitality.

Each tier maps to a mineral color — this is the nyuchi-verified-badge contract, and every app in the ecosystem renders the badge the same way.

TierNameMineralHow it is earned
1CommunityTerracottaCommunity members vouch for the venue’s operator
2Identity (OTP)CobaltThe operator verifies contact ownership via OTP
3GovernmentGoldChecked against an official government registry
4LicensedTanzaniteHolds a licence from the relevant regulator
  • Current tier: the bundu.verificationTier sub-object, carried by place, person, and entity documents. This is the single source of truth — apps read it, they never recompute it.
  • Audit trail: entity.verifications — one record per tier change with verificationType, verificationMethod, tierBefore/tierAfter, and evidence. Read-only for Kweli.

A representative claims a venue before verification can proceed:

  1. The representative submits a claim — POST /api/claims.
  2. A pending row is written to entity.representativeClaims (claimantPersonId, entityId, claimedRole, status, evidenceUrl).
  3. An admin approves or rejects the claim in the Kweli dashboard.

Approved claims give the claimant a management role on the entity; verification then proceeds up the tier ladder.

Signed-in users can vouch for a venue’s operator — this is the evidence base for tier 1 (Community).

  • POST /api/vouches writes to engagement.vouches.
  • Each vouch declares a relationship via vouchingType:
vouchingTypeMeaning
personal_knowledgeI personally know the operator
long_term_customerI have been a customer over time
business_partnerI do business with them
community_memberWe are part of the same community
neighborI am located nearby
professional_endorsementProfessional endorsement of their work

Enough active vouches satisfy the community_attestation verification method toward tier 1.

Owners can also publish a community verification request (POST /api/verification-requests) — a public call for vouches shown on the venue page.