Open yuji38kwmt opened 5 years ago
From what I recall, swagger parser doesn't distinguish between the two. To overcome such limitation, we use the following logic in the client:
Whenever the API key value or HTTP basic info (username, password) is set, we'll include it in the header or the URL query string.
This does not work well with OR but can be easily workaround by resetting one of the API keys to make sure only one API key is sent out.
Is your feature request related to a problem? Please describe.
I want to get information of security field in operation object. https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#operation-object
I want to know the relationship(AND/OR) between
OrganizationOwner
andProjectOwner
.swagger1.yaml
Following file means
OrganizationOwner OR ProjectOwner
swagger2.yaml
Following file means
OrganizationOwner AND ProjectOwner
DebugOperations
I saw difference
swagger1.yaml
andswagger2.yaml
withDebugOperations
flag. But there is no difference.Describe the solution you'd like
I would like to distinguish
swagger1.yaml
andswagger2.yaml
Environmental