upstream.verified.claims and in the attested session referenced by session_id.
A claim is not just a boolean. It has a status, a source, and often a reason.
Claim Status
| Status | Meaning |
|---|---|
asserted | Evidence backs this claim. |
refuted | Evidence contradicts this claim, such as a stale TCB. |
unknown | The verifier did not establish this claim. Treat it as not proven. |
Claim Source
| Source | Assurance |
|---|---|
hardware_proven | Comes from verified TEE quote or collateral. |
verifier_derived | Computed by the verifier from checked evidence. |
provider_asserted | Published by the provider, not independently proven. |
operator_asserted | Declared by the gateway operator. |
Common Claims
| Claim | Meaning |
|---|---|
tee_attested | A genuine CPU TEE was verified and bound to the channel. |
tcb_up_to_date | The platform Trusted Computing Base is current. |
os_known_good | The OS or platform image maps to reviewed source or known measurements. |
serving_software_known_good | Serving software maps to reviewed source or build provenance. |
gpu_attested | NVIDIA confidential-computing GPU evidence was verified and nonce-bound. |
model_weights_provenance | Model weights and quantization match a reviewed provenance chain. |
TCB Freshness
tcb_up_to_date is intentionally tri-state:
- Up-to-date evidence asserts the claim.
- Stale evidence refutes the claim and records the stale status.
- Missing evidence leaves the claim
unknown.
GPU Attestation
gpu_attested proves a confidential-computing GPU attestation was verified for the provider’s evidence. It does not by itself prove model weights, serving software, or CPU-to-GPU binding for every provider. Read it as supplemental evidence unless your policy says otherwise.
Suggested Policy
- Require
tee_attested: assertedfromhardware_proven. - Require
upstream.verified.result = verifiedandrequired = truefor sensitive prompts. - Treat
unknownas not proven. - Decide whether to reject
tcb_up_to_date: refuted. - Use
serving_software_known_goodandgpu_attestedto increase assurance when available.

