From c02866a2bc6f950f522e0b44463fcd4488be851c Mon Sep 17 00:00:00 2001 From: Arpit Jain Date: Fri, 21 Aug 2026 02:09:05 -0400 Subject: [PATCH] Use the publicKey field name in the bundle example The example shows publicKeyIdentifier, which is the message type name. The field in VerificationMaterial is dev.sigstore.common.v1.PublicKeyIdentifier public_key = 1 so protojson emits publicKey. The neighbouring X.509 example already uses the field name, certificate, rather than the type name, so this is the odd one out. Anyone hand-building a bundle from this page ends up with a key hint under a name no verifier reads. Signed-off-by: Arpit Jain --- content/en/about/bundle.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/about/bundle.md b/content/en/about/bundle.md index 802adce8..19ed573e 100644 --- a/content/en/about/bundle.md +++ b/content/en/about/bundle.md @@ -49,7 +49,7 @@ the format of the hint must be agreed upon out of band by the signer and the ver ```json "verificationMaterial": { - "publicKeyIdentifier": { + "publicKey": { "hint": "" } }