-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtemplate.hbs
More file actions
125 lines (92 loc) · 3.81 KB
/
template.hbs
File metadata and controls
125 lines (92 loc) · 3.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!-- ATTENTION! This file is auto-generated. Do not edit this file directly.
Instead, edit `data.yaml` and re-generate this file as per the README's
instructions -->
# Awesome JSON Schema [](https://github.com/sindresorhus/awesome)
[<img src="logo.svg" align="right" width="100">](https://json-schema.org)
[](http://makeapullrequest.com)
[](https://json-schema.slack.com)
[](https://opencollective.com/json-schema)
> A curated list of awesome JSON Schema resources, tutorials, tools, and more.
JSON Schema is a JSON-based format to annotate and validate JSON documents with
a vibrant community. JSON Schema is defined by a set of IETF specifications and
it is the industry-standard for defining the structure and meaning of JSON
documents.
---
**Would you like to promote your company or product here? [Sponsor us on
GitHub](https://github.com/sponsors/sourcemeta)**
---
## Contents
- [Getting Started](#getting-started)
- [Courses](#courses)
- [Development Tools](#development-tools)
- [Books](#books)
- [Registries](#registries)
- [Articles](#articles)
- [Related Specifications](#related-specifications)
- [Videos](#videos)
- [Papers](#papers)
- [Libraries](#libraries)
## Getting Started
{{#each (reverseSortBy data "year")}}
{{#compare type "==" "tutorial"}}
- [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Courses
{{#each (reverseSortBy data "year")}}
{{#compare type "==" "course"}}
- [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Development Tools
{{#each (sortBy data "title")}}
{{#compare type "==" "tool"}}
- [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Books
{{#each (reverseSortBy data "year")}}
{{#compare type "==" "book"}}
- ({{this.year}}) [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Registries
{{#each (sortBy data "title")}}
{{#compare type "==" "registry"}}
- [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Articles
{{#each (reverseSortBy data "year")}}
{{#compare type "==" "article"}}
- ({{this.year}}) [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Related Specifications
{{#each (sortBy data "title")}}
{{#compare type "==" "spec"}}
- [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Videos
For more video content, check out the [official JSON Schema YouTube channel](https://www.youtube.com/channel/UCrl3fjmHSp6FhJUKcEJhisA) and the [JSON Schema Conference](https://conference.json-schema.org) website.
{{#each (reverseSortBy data "year")}}
{{#compare type "==" "video"}}
- ({{this.year}}) [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Papers
{{#each (reverseSortBy data "year")}}
{{#compare type "==" "paper"}}
- ({{this.year}}) [{{title}}]({{{url}}}?utm_source=awesome-jsonschema) - {{summary}}.
{{/compare}}
{{/each}}
## Libraries
The JSON Schema website includes an extensive list of implementations and
related libraries: https://json-schema.org/implementations.html. Check out the
[Bowtie](https://bowtie.report) project that measures compliance of JSON Schema
implementations to help users select properly compliant and maintained
libraries.
---
> Special thanks to [@kinlane](https://github.com/kinlane) for curating the
initial version of this list.