File tree Expand file tree Collapse file tree 7 files changed +86
-0
lines changed Expand file tree Collapse file tree 7 files changed +86
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,11 @@ collections:
38
38
name : Extension Namespace Registry
39
39
output : true
40
40
permalink : /registry/:collection/:title
41
+ tag-kind :
42
+ slug : tag-kind
43
+ name : Tag Kind Registry
44
+ output : true
45
+ permalink : /registry/:collection/:title
41
46
exclude :
42
47
- Gemfile
43
48
- Gemfile.lock
Original file line number Diff line number Diff line change
1
+ # <a href =" .. " >{{ page.collection }}</a >
2
+
3
+ ## {{ page.slug }} - {{ page.description }}
4
+
5
+ {{ include.summary }}
6
+
7
+ {% if page.issue %}
8
+ ### GitHub Issue
9
+
10
+ * [ #{{ page.issue }}] (https://github.com/OAI/OpenAPI-Specification/issues/{{ page.issue }})
11
+ {% endif %}
12
+
13
+ {% if page.remarks %}
14
+ ### Remarks
15
+
16
+ {{ page.remarks }}
17
+ {% endif %}
Original file line number Diff line number Diff line change
1
+ ---
2
+ owner : lornajane
3
+ issue :
4
+ description : " Tags with `kind: audience` indicate the intended audience for an operation."
5
+ layout : default
6
+ ---
7
+
8
+ {% capture summary %}
9
+ Tags with ` kind: audience ` indicate the intended audience for an operation.
10
+ Common uses might be to tag internal, admin-level, or partner endpoints.
11
+ {% endcapture %}
12
+
13
+ {% include tag-kind-entry.md summary=summary %}
Original file line number Diff line number Diff line change
1
+ ---
2
+ owner : lornajane
3
+ issue :
4
+ description : " Tags with `kind: badge` are applied as visible badges in documentation."
5
+ layout : default
6
+ ---
7
+
8
+ {% capture summary %}
9
+ Tags with ` kind: badge ` are applied as visible badges in documentation.
10
+ It is expected that an operation might have many badges.
11
+ {% endcapture %}
12
+
13
+ {% include tag-kind-entry.md summary=summary %}
Original file line number Diff line number Diff line change
1
+ ---
2
+ owner : lornajane
3
+ issue :
4
+ description : " Tags with `kind: nav` are used in documentation to group operations into sections"
5
+ layout : default
6
+ ---
7
+
8
+ {% capture summary %}
9
+ Tags with ` kind: nav ` are used in documentation to group operations into sections.
10
+ In most cases, an operation only has one tag of this type so it belongs in one section.
11
+ {% endcapture %}
12
+
13
+ {% include tag-kind-entry.md summary=summary %}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ children:
8
8
- title : Draft Features Registry
9
9
- title : Format Registry
10
10
- title : Namespace Registry
11
+ - title : Tag Kinds Registry
11
12
has_toc : false
12
13
---
13
14
Original file line number Diff line number Diff line change
1
+ ---
2
+ title : Tag Kinds Registry
3
+ layout : default
4
+ permalink : /registry/tag-kind/index.html
5
+ parent : Registry
6
+ ---
7
+
8
+ # Tag Kinds Registry
9
+
10
+ ## Unreleased feature
11
+
12
+ The ` kind ` addition to OpenAPI tags is planned for release in OpenAPI 3.2, so support for the values here should not be expected until tools officially support the 3.2 version.
13
+
14
+ ## Contributing
15
+
16
+ Please raise a [ Pull-Request] ( https://github.com/OAI/OpenAPI-Specification/pulls ) or [ Issue] ( https://github.com/OAI/OpenAPI-Specification/issues ) to contribute or discuss a registry value.
17
+
18
+ ## Values
19
+
20
+ |Value|Description
21
+ | ---| ---| ---|
22
+ {% for value in site.tag-kind %}| <a href =" ./{{ value.slug }}.html " >{{ value.slug }}</a > | {{ value.description }} |
23
+ {% endfor %}
24
+
You can’t perform that action at this time.
0 commit comments