swagger-cli icon indicating copy to clipboard operation
swagger-cli copied to clipboard

Undeclared parameters in server url should not validate

Open berzi opened this issue 3 years ago • 0 comments

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.

berzi avatar Oct 13 '22 13:10 berzi