Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apis/datasets/v1/datasets.proto
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ message GetDatasetRequest {

// slug of the dataset to be returned, e.g. "open_data.copernicus.sentinel1_sar"
// it must contain at least one group and one dataset code name separated by a "."
string slug = 1 [(buf.validate.field).string.pattern = "^[a-z0-9_]+(\\.[a-z0-9_]+)+$"];
string slug = 1 [(buf.validate.field).string.pattern = "^[a-zA-Z0-9_]+(?:\\.[a-zA-Z0-9_]+)*$"];
// or alternatively a dataset id
tilebox.v1.ID id = 2;
}
Expand Down