fix(api): add missing InIDsFilter

This commit is contained in:
Livio Spring
2025-10-27 09:09:53 +01:00
parent 372f5d48a4
commit bfec4cb2b8

View File

@@ -99,3 +99,23 @@ message TimestampFilter {
(validate.rules).enum.defined_only = true (validate.rules).enum.defined_only = true
]; ];
} }
message InIDsFilter {
// Defines the ids to query for.
repeated string ids = 1 [
(validate.rules).repeated = {
unique: true
items: {
string: {
min_len: 1
max_len: 200
}
}
},
(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
min_length: 1;
max_length: 200;
example: "[\"69629023906488334\",\"69622366012355662\"]";
}
];
}