Openapiv3 doesn't able to generate of type map<string, bool> in protobuf
Open
- Dominant language
- Go
- Stars
- 2.3k
- Forks
- 279
- PR merge metrics
- No merged PRs in 30d
Description
i have a simple message of type
```protobuf
message SampleRequest {
string test_id = 1;
map test_state = 2;
}
````
it was not able to generate in openapi.yaml.
But when I changed from `map` to `string`, I saw changes in my openapi.yaml
```openapi
parameters:
- name: testId
in: query
schema:
type: string
- name: testState
in: query
schema:
type: string
```
Contributor guide
Assessment
This issue has not been assessed yet.