gnostic
gnostic copied to clipboard
Openapiv3 doesn't able to generate of type map<string, bool> in protobuf
i have a simple message of type
message SampleRequest {
string test_id = 1;
map<string, bool> test_state = 2;
}
it was not able to generate in openapi.yaml.
But when I changed from map<string, bool> to string, I saw changes in my openapi.yaml
parameters:
- name: testId
in: query
schema:
type: string
- name: testState
in: query
schema:
type: string