File tree 13 files changed +61
-22
lines changed
13 files changed +61
-22
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
---
3
- {{ site.alternative-schema | jsonify }}
4
-
3
+ {
4
+ {% for page in site.alternative-schema % }"{{ page.slug }}" : {
5
+ "slug" : " {{ page.slug }}" ,
6
+ "title" : " {{ page.title }}" ,
7
+ "issue" : " {{ page.issue }}" ,
8
+ "description" : " {{ page.description }}" ,
9
+ "owner" : " {{ page.owner }}"
10
+ }{% unless forloop.last % },{% endunless % }
11
+ {% endfor % }
12
+ }
Original file line number Diff line number Diff line change 1
1
---
2
2
---
3
- {{ site.draft-feature | jsonify }}
4
-
3
+ {
4
+ {% for page in site.draft-feature % }"{{ page.slug }}" : {
5
+ "slug" : " {{ page.slug }}" ,
6
+ "title" : " {{ page.title }}" ,
7
+ "issue" : " {{ page.issue }}" ,
8
+ "description" : " {{ page.description }}" ,
9
+ "owner" : " {{ page.owner }}"
10
+ }{% unless forloop.last % },{% endunless % }
11
+ {% endfor % }
12
+ }
Original file line number Diff line number Diff line change 1
1
---
2
2
---
3
- {{ site.extension | jsonify }}
4
-
3
+ {
4
+ {% for page in site.extension % }"{{ page.slug }}" : {
5
+ "slug" : " {{ page.slug }}" ,
6
+ "title" : " {{ page.title }}" ,
7
+ "issue" : " {{ page.issue }}" ,
8
+ "description" : " {{ page.description }}" ,
9
+ "owner" : " {{ page.owner }}" ,
10
+ "objects" : {{ page.objects | jsonify }},
11
+ "schema" : {{ page.schema | jsonify }}
12
+ }{% unless forloop.last % },{% endunless % }
13
+ {% endfor % }
14
+ }
Original file line number Diff line number Diff line change 1
1
---
2
2
---
3
- {{ site.format | jsonify }}
4
-
3
+ {
4
+ {% for page in site.format % }"{{ page.slug }}" : {
5
+ "slug" : " {{ page.slug }}" ,
6
+ "title" : " {{ page.title }}" ,
7
+ "issue" : " {{ page.issue }}" ,
8
+ "description" : " {{ page.description }}" ,
9
+ "owner" : " {{ page.owner }}" ,
10
+ "base_type" : " {{ page.base_type" }}"
11
+ }{% unless forloop.last %},{% endunless %}
12
+ {% endfor % }
13
+ }
Original file line number Diff line number Diff line change 1
1
---
2
2
---
3
- {{ site.collections | jsonify }}
4
-
3
+ [
4
+ {% for collection in site.collections % }" {{ collection.slug }}" {% unless forloop.last % },{% endunless % }
5
+ {% endfor % }
6
+ ]
Original file line number Diff line number Diff line change 1
1
---
2
- owner : darrel_miller
2
+ owner : darrelmiller
3
3
issue : 1532
4
4
description : JSON Schema
5
5
layout : default
Original file line number Diff line number Diff line change 1
1
---
2
- owner : darrel_miller
2
+ owner : darrelmiller
3
3
issue : 1532
4
4
description : xml Schema
5
5
layout : default
Original file line number Diff line number Diff line change 1
1
---
2
- owner : darrel_miller
2
+ owner : darrelmiller
3
3
issue : 1532
4
4
description : x-oas-draft-alternativeSchema
5
5
Original file line number Diff line number Diff line change 1
1
---
2
- slug : x-twitter
3
- name : x-twitter
4
- owner : mike_ralphson
2
+ owner : MikeRalphson
5
3
issue :
6
4
description : Used to hold a reference to the API provider's Twitter account.
7
5
schema :
8
6
type : string
9
7
objects : [ "contactObject" ]
10
-
11
8
layout : default
12
9
---
13
10
Original file line number Diff line number Diff line change 1
1
---
2
- slug : commonmark
3
2
owner : MikeRalphson
4
3
description : commonmark-formatted text
4
+ base_type : string
5
+ issue :
5
6
layout : default
6
7
---
7
8
8
9
# <a href =" .. " >{{ page.collection }}</a >
9
10
10
11
## {{ page.slug }} - {{ page.description }}
11
12
12
- Base type: ` string ` .
13
+ Base type: ` {{ page.base_type }} ` .
13
14
14
15
The ` {{page.slug}} ` format represents [ CommonMark] ( https://commonmark.org/ ) formatted text.
15
16
Original file line number Diff line number Diff line change 1
1
---
2
2
owner : MikeRalphson
3
3
description : HTML-formatted text
4
+ base_type : string
5
+ issue :
4
6
layout : default
5
7
---
6
8
7
9
# <a href =" .. " >{{ page.collection }}</a >
8
10
9
11
## {{ page.slug }} - {{ page.description }}
10
12
11
- Base type: ` string ` .
13
+ Base type: ` {{ page.base_type}} ` .
12
14
13
15
The ` {{page.slug}} ` format represents HTML-formatted text.
14
16
Original file line number Diff line number Diff line change 2
2
owner : MikeRalphson
3
3
issue : 845
4
4
description : signed 8-bit integer
5
+ base_type : number
5
6
layout : default
6
7
---
7
8
8
9
# <a href =" .. " >{{ page.collection }}</a >
9
10
10
11
## {{ page.slug }} - {{ page.description }}
11
12
12
- Base type: ` number ` .
13
+ Base type: ` {{ page.base_type }} ` .
13
14
14
15
The ` {{page.slug}} ` format represents a signed 8-bit integer, with the range -128 to 127.
15
16
Original file line number Diff line number Diff line change 2
2
owner : MikeRalphson
3
3
issue : 845
4
4
description : unsigned 8-bit integer
5
+ base_type : number
5
6
layout : default
6
7
---
7
8
8
9
# <a href =" .. " >{{ page.collection }}</a >
9
10
10
11
## {{ page.slug }} - {{ page.description }}
11
12
12
- Base type: ` number ` .
13
+ Base type: ` {{ page.base_type }} ` .
13
14
14
15
The ` {{page.slug}} ` format represents an unsigned 8-bit integer, with the range 0 to 255.
15
16
You can’t perform that action at this time.
0 commit comments