pub struct DocRow {
pub attested: Option<bool>,
pub href: Option<String>,
pub id: Option<String>,
pub kind: Option<String>,
pub label: Option<String>,
pub note: Option<String>,
pub released: Option<bool>,
pub tier: Option<String>,
pub title: Option<String>,
pub updated: Option<i32>,
}Fields§
§attested: Option<bool>Attested reports whether somebody OUTSIDE this organization put their name to it. Those are the artifacts a reviewer asks for, and they are released through a grant rather than published — there is no field that can say otherwise.
href: Option<String>Href is where to read it, present only when this reader may.
id: Option<String>ID is the document’s id within this organization’s centre.
kind: Option<String>Kind is the artifact type — soc2, iso, pentest, letter, caiq, sig, vsa, questionnaire, policy or other.
label: Option<String>Label is the artifact type in words, for rendering.
note: Option<String>Note is anything the organization says about this artifact.
released: Option<bool>Released reports whether THIS reader may read it. False means the artifact exists and is available on request.
tier: Option<String>Tier is "public" or "gated". It defaults to gated, so a new artifact is closed until somebody opens it deliberately.
title: Option<String>Title is what the document is called.
updated: Option<i32>Updated is when the record last changed, unix milliseconds.