Files
swagger-ui/test/e2e-cypress/static/documents/features/deep-linking.swagger.yaml
James ZHANG 1791759de5 improve(deeplink): support utf16 tags and IDs (via #4921)
* ref #3958, support utf16 fragments on the deeplink plugin
* put -> head for UTF16 operation
this is a temporary fix, eventually we will run out
of methods and need to use a new targeting strategy
* drop obsolete %20 decoder
* add full test suite for UTF16 operation
* use encodeURIComponent when setting hash
* drop obsolete test cases
2018-10-18 16:55:30 -05:00

35 lines
674 B
YAML

swagger: "2.0"
paths:
/:
get:
operationId: "myOperation"
tags: ["myTag"]
summary: an operation
responses:
"200":
description: ok
/withSpaces:
post:
operationId: "my Operation"
tags: ["my Tag"]
summary: an operation
responses:
"200":
description: ok
/utf16fragments:
head:
operationId: "пошел"
tags: ["шеллы"]
/withUnderscores:
patch:
operationId: "underscore_Operation"
tags: ["underscore_Tag"]
summary: an operation
responses:
"200":
description: ok
/noOperationId:
put:
tags: ["tagTwo"]