pub struct OrgView {
pub badge_markdown: Option<String>,
pub created_at: Option<i32>,
pub method: Option<String>,
pub owner_url: Option<String>,
pub verified: Option<bool>,
pub verified_at: Option<i32>,
}Fields§
§badge_markdown: Option<String>BadgeMarkdown is the ready-to-paste README snippet, DERIVED for each response from this deployment’s badge host and never stored — here it deep-links the OWNER’s template import rather than one repository’s.
created_at: Option<i32>CreatedAt is unix seconds when the owner claim was first recorded — equal to verifiedAt on the first proof, then fixed while verifiedAt moves.
method: Option<String>Method is HOW the owner was proven, always against its ".github" control repository: "oauth" — an IAM-linked forge token showed admin or push on it; or "file" — a hanzo.json on its default branch carried this author’s verify code. The "maintainer" shortcut is a per-repository attribution and never appears here. Omitted on a row written before the method was recorded.
owner_url: Option<String>OwnerURL is the claim key in canonical form — lowercased "host/owner" with NO repository segment, host ∈ {github.com, gitlab.com}. It covers every repository under that owner, so code with no claim of its own still earns; a per-repository claim outranks it. UNIQUE across every author: first proven claim wins.
verified: Option<bool>Verified reports that ownership of the WHOLE owner was proven — against that owner’s ".github" control repository, which is exactly as strong as a per-repository claim. Only a proven claim is written, so every row returned here is true.
verified_at: Option<i32>VerifiedAt is unix seconds of the most recent successful proof of the owner; re-verifying refreshes it, and the method beside it, in place.