From 9736b525ac19798c719bfe7504e1cd1384be1649 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Wed, 27 Mar 2024 09:44:57 -0400 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Fredrik Skogman Signed-off-by: William Woodruff --- protos/sigstore_trustroot.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/protos/sigstore_trustroot.proto b/protos/sigstore_trustroot.proto index 70fe9a39..6a184ff0 100644 --- a/protos/sigstore_trustroot.proto +++ b/protos/sigstore_trustroot.proto @@ -159,9 +159,11 @@ message SigningConfig { // to perform both signing and verification operations against a particular // instance of Sigstore. message ClientTrustConfig { + // MUST be application/vnd.dev.sigstore.clienttrustconfig.v0.1+json + string media_type = 1; // The root of trust, which MUST be present. - TrustedRoot trusted_root = 1 [(google.api.field_behavior) = REQUIRED]; + TrustedRoot trusted_root = 2 [(google.api.field_behavior) = REQUIRED]; // Configuration for signing clients, which MUST be present. - SigningConfig signing_config = 2 [(google.api.field_behavior) = REQUIRED]; + SigningConfig signing_config = 3 [(google.api.field_behavior) = REQUIRED]; }