We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41abd45 commit 9abf977Copy full SHA for 9abf977
1 file changed
demo/examples/tests/licenseUrl.yaml
@@ -0,0 +1,27 @@
1
+openapi: 3.1.0
2
+info:
3
+ title: License URL Demo API
4
+ description: |
5
+ Demonstrates `license.url` rendering (regression check).
6
+
7
+ Verifies that the existing `license.url` behavior is unaffected by the
8
+ addition of `license.identifier` support.
9
+ version: 1.0.0
10
+ license:
11
+ name: Apache 2.0
12
+ url: https://www.apache.org/licenses/LICENSE-2.0.html
13
+tags:
14
+ - name: licenseUrl
15
+ description: License url tests
16
+paths:
17
+ /license-url:
18
+ get:
19
+ tags:
20
+ - licenseUrl
21
+ summary: License rendered via URL
22
23
+ Verifies that a spec using `license.url` renders a clickable license
24
+ link pointing to the provided URL.
25
+ responses:
26
+ "204":
27
+ description: No content
0 commit comments