Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Openapiv3 doesn't able to generate of type map<string, bool> in protobuf #408

Open
ankittk opened this issue Sep 19, 2023 · 0 comments
Open

Comments

@ankittk
Copy link

ankittk commented Sep 19, 2023

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant