-
Notifications
You must be signed in to change notification settings - Fork 16
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
Proto oneof should match to OAS oneOf #78
Comments
I rarely like when someone posts an AI response to a question (and this is probably a first that I've done this), so hopefully it's okay because this sounds legit, and I know neither spec well enough to comment otherwise https://claude.ai/share/4cb65418-a7e9-4523-9b51-f085225592c2 Seems pretty well explained |
ok did a bit more digging and found this thread . The discussion is a bit dense but the TL;DR seems to be that proto With that said, testing the example they give with the current implementation of
in https://www.jsonschemavalidator.net/ marks this payload as valid
when it should not, since at most one of the keys should be in the payload. The correct translations should be the one that they propose later in the thread
This one validates correctly for the relevant cases and it's also easier to understand (imo). It has some caveats as they mentioned but I think this might be an acceptable tradeoff vs how complicated it can get trying to cover all possible scenarios. |
Problem Statement
Suppose we have the following
mytest.proto
fileand we run it through the converter doing something like
We then get the following output file
Notice that the proto
oneof
has been mapped to combination ofanyOf
+not anyOf
but OAS already provides a direct oneOf semantics . Following the structure suggested in the docs the output should be something along the lines ofWhere the proto's
oneof
maps 1-to-1 to the OASoneOf
.External validation.
We validated an equivalent
oneOf
structure against readme.io which uses OAS 3.x schemas to define elements in their UI. The suggested shape produces the correct elements whereas theanyOf
based does not.Thank you for your time and for putting the effort into writing / maintaining this project.
EDIT: Just realized that this seems intentional from what I see on this issue. I'm not a proto or OAS expert so would like to know more why this is.
The text was updated successfully, but these errors were encountered: