Skip to content

Ignore vendor specific tags at verb level

Compare
Choose a tag to compare
@hornc hornc released this 09 Dec 04:36
· 35 commits to master since this release

Vendor specific tags are now ignored at the verb level. Vendor specific tags are any tag of the form "x-something":

The intention here is to allow the vendor specific tag to apply to verbs in a path.

E.g.

...
paths:
  /posts/{id}:
    x-product: "Favorites"
    get:
      ...
    put:
      ...
...