You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Used to check for things that aren't errors, but things we would lint for if they were compiletime instead of runtime recommendations:
(probably not..) - actual request or response headers that aren't covered by a definition in the spec document
query parameters that aren't covered ""
These are errors, but perhaps should be relaxed, given some config variable:
the operation (method/path combo) is not found in the specification. (presently an error, with 404 Not Found recommended)
path is found, but not the method (presently an error, with 405 Method Not Allowed recommended)
the request or response Content-Type isn't covered by a media-type definition in .../content/<media-type/... (presently an error, with 415 "Unsupported Media Type" recommended)
the response code isn't covered by anything in the 'responses' specification (which means 'default' wasn't included) (presently an error)
The text was updated successfully, but these errors were encountered:
karenetheridge
changed the title
strict mode for validation
strict/less-strict mode for validation
Dec 19, 2023
Used to check for things that aren't errors, but things we would lint for if they were compiletime instead of runtime recommendations:
These are errors, but perhaps should be relaxed, given some config variable:
The text was updated successfully, but these errors were encountered: