Open berzi opened 2 years ago
Given the following schema:
openapi: 3.1.0 info: title: Test version: 1.0.0 servers: - url: "https://example.com/{someParameter}/etc/{anotherParameter}" variables: someParameter: default: sometest123 paths: {}
Note how someParameter has a corresponding variable object, but anotherParameter doesn't. This probably should not be accepted, but swagger-cli validates the spec with no errors.
someParameter
anotherParameter
Given the following schema:
Note how
someParameter
has a corresponding variable object, butanotherParameter
doesn't. This probably should not be accepted, but swagger-cli validates the spec with no errors.