GoogleApi.OnDemandScanning.V1.Model.AttestationOccurrence (google_api_on_demand_scanning v0.7.0)
View SourceOccurrence that represents a single "attestation". The authenticity of an attestation can be verified using the attached signature. If the verifier trusts the public key of the signer, then verifying the signature is sufficient to establish trust. In this circumstance, the authority to which this attestation is attached is primarily useful for lookup (how to find this attestation if you already know the authority and artifact to be verified) and intent (for which authority this attestation was intended to sign.
Attributes
-
jwts
(type:list(GoogleApi.OnDemandScanning.V1.Model.Jwt.t)
, default:nil
) - One or more JWTs encoding a self-contained attestation. Each JWT encodes the payload that it verifies within the JWT itself. Verifier implementation SHOULD ignore theserialized_payload
field when verifying these JWTs. If only JWTs are present on this AttestationOccurrence, then theserialized_payload
SHOULD be left empty. Each JWT SHOULD encode a claim specific to theresource_uri
of this Occurrence, but this is not validated by Grafeas metadata API implementations. The JWT itself is opaque to Grafeas. -
serializedPayload
(type:String.t
, default:nil
) - Required. The serialized payload that is verified by one or moresignatures
. -
signatures
(type:list(GoogleApi.OnDemandScanning.V1.Model.Signature.t)
, default:nil
) - One or more signatures overserialized_payload
. Verifier implementations should consider this attestation message verified if at least onesignature
verifiesserialized_payload
. SeeSignature
in common.proto for more details on signature structure and verification.
Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Types
@type t() :: %GoogleApi.OnDemandScanning.V1.Model.AttestationOccurrence{ jwts: [GoogleApi.OnDemandScanning.V1.Model.Jwt.t()] | nil, serializedPayload: String.t() | nil, signatures: [GoogleApi.OnDemandScanning.V1.Model.Signature.t()] | nil }