Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 479 Bytes

1002.md

File metadata and controls

30 lines (25 loc) · 479 Bytes

1002 - ProtocolNoLongerSupported

Description: Checks whether any supported scheme is changed from the previous specification.

Cause: This is considered a breaking change.

Example: http scheme is no longer supported in the new version.

Old specification

{
  "swagger": "2.0",
  "info": {
    ...
  "scheme": [
    "http",
    "https"
  ]

New specification

{
  "swagger": "2.0",
  "info": {
    ...
  "scheme": [
    "https"
  ]