From 98e6955d0d9bc840c1866c09fb71ca7fc7bcbf5c Mon Sep 17 00:00:00 2001 From: Lukas Bindreiter Date: Mon, 12 Jan 2026 15:52:18 +0100 Subject: [PATCH] Make dataset summary optional in update dataset request --- apis/datasets/v1/datasets.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apis/datasets/v1/datasets.proto b/apis/datasets/v1/datasets.proto index 42b0708..3b06142 100644 --- a/apis/datasets/v1/datasets.proto +++ b/apis/datasets/v1/datasets.proto @@ -49,7 +49,7 @@ message UpdateDatasetRequest { // updated type of the dataset. DatasetType type = 3 [(buf.validate.field).required = true]; // updated summary of the dataset. - string summary = 4 [(buf.validate.field).string.min_len = 1]; + string summary = 4 [features.field_presence = EXPLICIT]; } // ClientInfo contains information about the client requesting datasets, useful for us to gather usage data