-
-
Notifications
You must be signed in to change notification settings - Fork 257
/
Copy pathtooling-data.yaml
2409 lines (2230 loc) · 81.3 KB
/
tooling-data.yaml
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- name: JsonSchema.Net
description: 'System.Text.Json-based support for all of your JSON needs.'
toolingTypes:
['validator', 'code-to-schema', 'schema-to-data', 'annotations', 'bundler']
languages: ['.NET']
maintainers:
- name: 'Greg Dennis'
username: 'gregsdennis'
platform: 'github'
license: 'MIT'
source: 'https://github.com/gregsdennis/json-everything'
homepage: 'https://json-everything.net'
supportedDialects:
draft: ['6', '7', '2019-09', '2020-12']
lastUpdated: '2022-08-31'
bowtie:
identifier: 'dotnet-jsonschema-net'
- name: Json.NET Schema
description: 'Json.NET Schema is a powerful, complete and easy to use JSON Schema framework for .NET'
toolingTypes: ['validator', 'code-to-schema']
languages: ['.NET']
maintainers:
- name: 'James Newton-King'
username: 'JamesNK'
platform: 'github'
license: 'AGPL-3.0-only'
source: 'https://github.com/JamesNK/Newtonsoft.Json.Schema'
homepage: 'https://www.newtonsoft.com/jsonschema'
supportedDialects:
draft: ['3', '4', '6', '7', '2019-09', '2020-12']
lastUpdated: '2024-06-08'
- name: Corvus.JsonSchema
description: 'Support for Json Schema validation and entity generation'
toolingTypes: ['validator']
languages: ['.NET']
maintainers:
- name: 'Matthew Adams'
username: 'mwadams'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/corvus-dotnet/corvus.jsonschema'
supportedDialects:
draft: ['6', '7', '2019-09', '2020-12']
lastUpdated: '2023-02-14'
bowtie:
identifier: 'dotnet-corvus-jsonschema'
- name: LateApexEarlySpeed.Json.Schema
description: 'Simple and high performance json schema implementation for .Net and related json validation in .Net'
toolingTypes: ['validator', 'code-to-schema']
languages: ['.NET']
maintainers:
- name: 'LateApexEarlySpeed'
username: 'lateapexearlyspeed'
platform: 'github'
license: 'BSD-3-Clause'
source: 'https://github.com/lateapexearlyspeed/Lateapexearlyspeed.JsonSchema'
homepage: 'https://www.nuget.org/packages/Lateapexearlyspeed.Json.Schema'
supportedDialects:
draft: ['2020-12']
lastUpdated: '2023-12-13'
- name: f5-json-schema
description: 'JSON schema validation'
toolingTypes: ['validator']
languages: ['C++']
maintainers:
- name: 'Kirit Sælensminde'
username: 'KayEss'
platform: 'github'
license: 'BSL-1.0'
source: 'https://github.com/hotkit/json-schema'
supportedDialects:
draft: ['7']
lastUpdated: '2022-08-31'
- name: JSON schema validation for JSON for Modern C++
description: 'JSON schema validator for JSON for Modern C++'
toolingTypes: ['validator']
languages: ['C++']
maintainers:
- name: 'Patrick Boettcher'
username: 'pboettch'
platform: 'github'
license: 'MIT'
source: 'https://github.com/pboettch/json-schema-validator'
supportedDialects:
draft: ['7']
lastUpdated: '2022-08-31'
- name: Valijson
description: 'Header-only C++ library for JSON Schema validation, with support for many popular parsers'
toolingTypes: ['validator']
languages: ['C++']
maintainers:
- name: 'Tristan Penman'
username: 'tristanpenman'
platform: 'github'
license: 'BSD-2-Clause'
source: 'https://github.com/tristanpenman/valijson'
supportedDialects:
draft: ['7']
lastUpdated: '2022-08-31'
bowtie:
identifier: 'cpp-valijson'
- name: jsoncons
description: 'A C++, header-only library for constructing JSON and JSON-like data formats, with JSON Pointer, JSON Patch, JSON Schema, JSONPath, JMESPath, CSV, MessagePack, CBOR, BSON, UBJSON'
toolingTypes: ['validator']
languages: ['C++']
maintainers:
- name: 'Daniel Parker'
username: 'danielaparker'
platform: 'github'
license: 'BSL-1.0'
source: 'https://github.com/danielaparker/jsoncons'
homepage: 'https://danielaparker.github.io/jsoncons'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
toolingListingNotes: 'Header-only library'
lastUpdated: '2024-04-22'
- name: jinx
description: "jinx is not xml-schema (it's json-schema!)"
toolingTypes: ['validator']
languages: ['Clojure']
maintainers:
- name: 'Malcolm Sparks'
username: 'malcolmsparks'
platform: 'github'
license: 'MIT'
source: 'https://github.com/juxt/jinx'
supportedDialects:
draft: ['7']
lastUpdated: '2022-08-31'
- name: luposlip/json-schema
description: 'Clojure library JSON Schema validation and generation - Draft-07 compatible'
toolingTypes: ['validator', 'data-to-schema']
languages: ['Clojure']
maintainers:
- name: 'Henrik Mohr'
username: 'luposlip'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/luposlip/json-schema'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
bowtie:
identifier: 'clojure-json-schema'
- name: JSON Essentials for COM/ActiveX
description: 'JSON Essentials™ for COM/ActiveX is a language independent JSON toolkit for rapid implementation of the most common JSON use cases on the Windows platform'
toolingTypes: ['validator']
environments: ['COM/ActiveX']
maintainers:
- name: 'Alexander Stoyan'
license: 'Proprietary'
homepage: 'https://pinery.systems/json-essentials-com/index.html'
supportedDialects:
draft: ['7']
toolingListingNotes: 'Language independent, includes JSON DOM parser, REST ready, 4 licensing options for free and business uses. For Windows platform only.'
lastUpdated: '2022-08-31'
- name: json-schema (fisxoj)
description: 'JSON Schema validation'
toolingTypes: ['validator']
languages: ['Common Lisp']
maintainers:
- name: 'Matt Novenstern'
username: 'fisxoj'
platform: 'github'
license: 'LGPL-2.1-only'
source: 'https://github.com/fisxoj/json-schema'
supportedDialects:
draft: ['4', '6', '7', '2019-09']
compliance:
config:
docs: 'https://github.com/fisxoj/json-schema/blob/master/README.rst'
instructions: |
set `resolve-remote-references` to `nil`
lastUpdated: '2022-08-31'
- name: Exonerate
description: 'An opinionated JSONSchema compiler for elixir.'
toolingTypes: ['validator']
languages: ['Elixir']
maintainers:
- name: 'Isaac Yonemoto'
username: 'ityonemo'
platform: 'github'
license: 'MIT'
source: 'https://github.com/E-xyza/Exonerate'
homepage: 'https://hexdocs.pm/exonerate/Exonerate.html'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2023-04-04'
- name: JsonXema
description: 'A JSON Schema validator.'
toolingTypes: ['validator']
languages: ['Elixir']
maintainers:
- name: 'Marcus Kruse'
username: 'NickNeck'
platform: 'github'
license: 'MIT'
source: 'https://github.com/hrzndhrn/json_xema'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
- name: JeSSE
description: 'jesse (JSon Schema Erlang) is an implementation of a JSON Schema validator for Erlang.'
toolingTypes: ['validator']
languages: ['Erlang']
maintainers:
- name: 'Sergey Prokhorov'
username: 'seriyps'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/for-GET/jesse'
supportedDialects:
draft: ['3', '4', '6']
lastUpdated: '2022-08-31'
- name: santhosh-tekuri/jsonschema
description: 'JSONSchema (draft 2020-12, draft 2019-09, draft-7, draft-6, draft-4) Validation using Go'
toolingTypes: ['validator']
languages: ['Go']
maintainers:
- name: 'Santhosh Kumar Tekuri'
username: 'santhosh-tekuri'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/santhosh-tekuri/jsonschema'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
toolingListingNotes: 'Includes custom keywords, output formats'
lastUpdated: '2022-08-31'
bowtie:
identifier: 'go-jsonschema'
- name: jsonschema
description: 'A powerful Go JSON Schema validator library aligned with the JSON Schema Draft 2020-12.'
toolingTypes: ['validator']
languages: ['Go']
maintainers:
- name: 'kaptinlin'
username: 'kaptinlin'
platform: 'github'
license: 'MIT'
source: 'https://github.com/kaptinlin/jsonschema'
supportedDialects:
draft: ['2020-12']
toolingListingNotes: 'Supports output formats, multilingual output'
lastUpdated: '2024-05-07'
- name: qri-io/jsonschema
description: 'Golang implementation of https://json-schema.org drafts 7 & 2019-09'
toolingTypes: ['validator']
languages: ['Go']
maintainers:
- name: "Brendan O'Brien"
username: 'b5'
platform: 'github'
license: 'MIT'
source: 'https://github.com/qri-io/jsonschema'
supportedDialects:
draft: ['7', '2019-09']
toolingListingNotes: 'Includes custom validator support, rich error returns'
lastUpdated: '2022-08-31'
- name: gojsonschema
description: 'An implementation of JSON Schema, draft v4 v6 & v7 - Go language'
toolingTypes: ['validator']
languages: ['Go']
maintainers:
- name: 'xeipuuv'
username: 'xeipuuv'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/xeipuuv/gojsonschema'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
bowtie:
identifier: 'go-gojsonschema'
- name: Vert.x Json Schema
description: 'Vert.x Json Schema'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'Julien Viet'
username: 'vietj'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/eclipse-vertx/vertx-json-schema'
supportedDialects:
draft: ['4', '7', '2019-09', '2020-12']
toolingListingNotes: |
Validator for Eclipse Vert.x project JSON types.
Includes custom keywords support, custom dialect support, asynchronous validation
lastUpdated: '2022-08-31'
- name: jsonschemafriend
description: 'A JSON Schema loader and validator, delivered as a Java library.'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'Andy Coates'
username: 'big-andy-coates'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/jimblackler/jsonschemafriend'
supportedDialects:
draft: ['3', '4', '6', '7', '2019-09', '2020-12']
lastUpdated: '2022-08-31'
bowtie:
identifier: 'java-jsonschemafriend'
- name: networknet/json-schema-validator
description: 'A fast Java JSON schema validator that supports draft V4, V6, V7, V2019-09 and V2020-12'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'Justin Tay'
username: 'justin-tay'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/networknt/json-schema-validator'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
toolingListingNotes: 'Support OpenAPI 3.0 with Jackson parser'
compliance:
config:
docs: https://github.com/networknt/json-schema-validator/blob/master/doc/config.md
instructions: 'set `handleNullableField` to `false`'
lastUpdated: '2024-02-05'
- name: erosb/json-sKema
description: 'JSON Schema Validator for the JVM, implements draft 2020-12'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'Bence Eros'
username: 'erosb'
platform: 'github'
license: 'MIT'
source: 'https://github.com/erosb/json-sKema'
supportedDialects:
draft: ['2019-09']
toolingListingNotes: 'Successor of the everit-org/json-schema library'
lastUpdated: '2023-04-10'
- name: Snow
description: 'Snow, a full-featured JSON Schema validator'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'Shawn Silverman'
username: 'ssilverman'
platform: 'github'
license: 'AGPL-3.0-only'
source: 'https://github.com/ssilverman/snowy-json'
supportedDialects:
draft: ['6', '7', '2019-09']
toolingListingNotes: 'Uses Maven for the project and Gson under the hood.'
lastUpdated: '2022-08-31'
- name: everit-org/json-schema
description: 'JSON Schema validator for java, based on the org.json API'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'Bence Eros'
username: 'erosb'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/everit-org/json-schema'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
- name: Justify
description: 'Justify is a JSON validator based on JSON Schema Specification and Jakarta JSON Processing API (JSON-P).'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'leadpony'
username: 'leadpony'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/leadpony/justify'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
- name: json-schema (dev.harrel)
description: 'JSON schema validation library written in Java. It can be used with all major JSON libraries (Jackson, GSON, JSON.org and more) and is open for customizations.'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'harrel56'
username: 'harrel56'
platform: 'github'
license: 'MIT'
source: 'https://github.com/harrel56/json-schema'
homepage: 'https://harrel.dev/json-schema'
supportedDialects:
draft: ['7', '2019-09', '2020-12']
lastUpdated: '2024-08-14'
bowtie:
identifier: 'java-json-schema'
- name: Zuunr JSON
description: 'Immutable JSON structure to enable Java applications to utilize JSON Schemas INSIDE Java applications - avoiding extra serialization and deserialization.'
toolingTypes: ['validator']
languages: ['Java']
maintainers:
- name: 'Niklas Eldberger'
username: 'niklas_eldberger'
platform: 'github'
license: 'Apache-2.0'
source: 'https://bitbucket.org/zuunr/json'
supportedDialects:
draft: ['2020-12']
toolingListingNotes: 'Immutable JSON representation in Java + validation and filtering based on JSON Schema'
lastUpdated: '2023-09-04'
- name: OpenAPI JSON Schema Generator
description: 'OpenAPI JSON Schema Generator allows auto-generation of API client libraries with a focus on JSON schema given an OpenAPI document'
toolingTypes:
['validator', 'code-to-schema', 'documentation', 'schema-to-code']
languages: ['Java', 'Kotlin', 'Python']
maintainers:
- name: 'Justin Black'
username: 'spacether'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/openapi-json-schema-tools/openapi-json-schema-generator'
supportedDialects:
draft: ['5', '2020-12']
toolingListingNotes: 'Allows auto-generation of API client libraries (SDK generation) given an OpenAPI document. JSON schema validation run when validating schemas.'
lastUpdated: '2024-05-20'
- name: '@hyperjump/json-schema'
description: 'JSON Schema Validation, Annotation, and Bundling. Supports Draft 04, 06, 07, 2019-09, 2020-12, OpenAPI 3.0, and OpenAPI 3.1'
toolingTypes: ['validator', 'annotations', 'bundler', 'util-general-processing']
languages: ['JavaScript']
maintainers:
- name: 'Jason Desrosiers'
username: 'jdesrosiers'
platform: 'github'
license: 'MIT'
source: 'https://github.com/hyperjump-io/json-schema'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
toolingListingNotes: 'Built for Node.js and browsers. Includes support for custom vocabularies.'
lastUpdated: '2024-09-04'
bowtie:
identifier: 'js-hyperjump'
- name: '@exodus/schemasafe'
description: 'A reasonably safe JSON Schema validator with draft-04/06/07/2019-09/2020-12 support.'
toolingTypes: ['validator']
languages: ['JavaScript']
maintainers:
- name: 'Nikita Skovoroda'
username: 'ChALkeR'
platform: 'github'
license: 'MIT'
source: 'https://github.com/ExodusMovement/schemasafe'
homepage: 'https://npmjs.com/@exodus/schemasafe'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
toolingListingNotes:
'For Node.js and browsers, with security and speed being the main focus. Pre-compiles schemas to JS functions.
[Supports OpenAPI `discriminator`](https://github.com/ExodusMovement/schemasafe/blob/master/doc/Discriminator-support.md).
Default behavior is hardened with additional schema coherence validation.'
lastUpdated: '2023-08-29'
bowtie:
identifier: 'js-schemasafe'
- name: ajv
description: 'The fastest JSON schema Validator.'
toolingTypes: ['validator']
languages: ['JavaScript']
maintainers:
- name: 'Evgeny Poberezkin'
username: 'epoberezkin'
platform: 'github'
license: 'MIT'
source: 'https://github.com/ajv-validator/ajv'
homepage: 'https://ajv.js.org/'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
toolingListingNotes: 'for Node.js and browsers - supports [user-defined keywords](https://github.com/ajv-validator/ajv/blob/master/docs/keywords.md) and [$data reference](https://github.com/json-schema-org/json-schema-spec/issues/51)'
compliance:
config:
docs: https://ajv.js.org/strict-mode.html
instructions: 'set option `strict: false`'
lastUpdated: '2022-08-31'
bowtie:
identifier: 'js-ajv'
- name: '@cfworker/json-schema'
description: 'A JSON schema validator that will run on Cloudflare workers. Supports drafts 4, 7, 2019-09, and 2020-12.'
toolingTypes: ['validator']
languages: ['JavaScript']
maintainers:
- name: 'Jeremy Danyow'
username: 'jdanyow'
platform: 'github'
license: 'MIT'
source: 'https://github.com/cfworker/cfworker/blob/master/packages/json-schema/README.md'
homepage: 'https://cfworker.dev'
supportedDialects:
draft: ['7', '4', '2019-09', '2020-12']
toolingListingNotes: 'Built for Cloudflare workers, browsers, and Node.js'
lastUpdated: '2023-02-28'
- name: JSON Schema Library
description: 'Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation'
toolingTypes: ['validator']
languages: ['JavaScript']
maintainers:
- name: 'Sascha Goldhofer'
username: 'sagold'
platform: 'github'
license: 'MIT'
source: 'https://github.com/sagold/json-schema-library'
supportedDialects:
draft: ['7', '6', '4', '2019-09']
toolingListingNotes: 'Built for Node.js and browsers. Customizable json-validator and json-schema utilities for traversal, data generation and validation'
lastUpdated: '2022-08-31'
- name: djv
description: 'Dynamic JSON Schema Validator - Supports draft-04/06'
toolingTypes: ['validator']
languages: ['JavaScript']
maintainers:
- name: 'Alex Korzhikov'
username: 'korzio'
platform: 'github'
license: 'MIT'
source: 'https://github.com/korzio/djv'
homepage: 'https://www.npmjs.com/package/djv'
supportedDialects:
draft: ['6', '4']
toolingListingNotes: 'for Node.js and browsers'
lastUpdated: '2022-08-31'
- name: vue-vuelidate-jsonschema
description: 'Create vuelidate validation rules based on json schema'
toolingTypes: ['validator']
languages: ['JavaScript']
maintainers:
- name: 'Martin Hansen'
username: 'mokkabonna'
platform: 'github'
license: 'MIT'
source: 'https://github.com/mokkabonna/vue-vuelidate-jsonschema'
supportedDialects:
draft: ['6']
lastUpdated: '2022-08-31'
- name: jema.js
description: 'JSON Schema handling / validator'
toolingTypes: ['validator']
languages: ['JavaScript']
maintainers:
- name: 'Tobias Buschor'
username: 'nuxodin'
platform: 'github'
license: 'MIT'
source: 'https://github.com/nuxodin/jema.js'
supportedDialects:
draft: ['2020-12']
lastUpdated: '2023-03-28'
- name: Medeia-validator
description: 'Medeia JSON-Schema Validator'
toolingTypes: ['validator']
languages: ['Kotlin', 'Java']
maintainers:
- name: 'Erwin Bolwidt'
username: 'ebolwidt'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/worldturner/medeia-validator'
supportedDialects:
draft: ['4', '6', '7']
toolingListingNotes: 'Streaming validator for Kotlin and Java clients; works with Jackson and Gson'
lastUpdated: '2022-08-31'
- name: json-kotlin-schema
description: 'Kotlin implementation of JSON Schema (Draft 07)'
toolingTypes: ['validator']
languages: ['Kotlin']
maintainers:
- name: 'Peter Wall'
username: 'pwall567'
platform: 'github'
license: 'MIT'
source: 'https://github.com/pwall567/json-kotlin-schema'
supportedDialects:
draft: ['7', '2019-09']
toolingListingNotes: |
Kotlin implementation of JSON Schema.
(Currently supports most of Draft 7; see the README for details.
Full compliance with Draft 7 and later drafts in progress.)
lastUpdated: '2022-08-31'
- name: json-schema-validator
description: 'The JSON schema validation library that works with'
toolingTypes: ['validator']
languages: ['Kotlin']
maintainers:
- name: 'Oleg Smirnov'
username: 'OptimumCode'
platform: 'github'
license: 'MIT'
source: 'https://github.com/OptimumCode/json-schema-validator'
homepage: 'https://github.com/Kotlin/kotlinx.serialization'
supportedDialects:
draft: ['7']
toolingListingNotes: |
Kotlin Muliplatform implementation of JSON schema to validate the JsonElement from kotlinx.serialization-json.
The library is 'work in progress' and new features/drafts will be added in the future.
lastUpdated: '2023-08-01'
bowtie:
identifier: 'kotlin-kmp-json-schema-validator'
- name: JSON::Schema::Modern
description: 'Validate data against a schema using a JSON Schema'
toolingTypes: ['validator']
languages: ['Perl']
maintainers:
- name: 'Karen Etheridge'
username: 'karenetheridge'
platform: 'github'
license: 'GPL-1.0+ OR Artistic-1.0'
source: 'https://github.com/karenetheridge/JSON-Schema-Modern'
homepage: 'https://metacpan.org/dist/JSON-Schema-Modern'
supportedDialects:
draft: ['7', '2019-09', '2020-12']
lastUpdated: '2022-08-31'
- name: JSON::Schema::Tiny
description: 'Validate data against a schema, minimally'
toolingTypes: ['validator']
languages: ['Perl']
maintainers:
- name: 'Karen Etheridge'
username: 'karenetheridge'
platform: 'github'
license: 'GPL-1.0+ OR Artistic-1.0'
source: 'https://github.com/karenetheridge/JSON-Schema-Tiny'
homepage: 'https://metacpan.org/dist/JSON-Schema-Tiny'
supportedDialects:
draft: ['7', '2019-09', '2020-12']
lastUpdated: '2022-08-31'
- name: JSON::Validator
description: 'Validate data against a JSON schema'
toolingTypes: ['validator']
languages: ['Perl']
maintainers:
- name: 'Jan Henning Thorsen'
username: 'jhthorsen'
platform: 'github'
license: 'Artistic-2.0'
source: 'https://github.com/mojolicious/json-validator'
homepage: 'https://metacpan.org/dist/JSON-Validator'
supportedDialects:
draft: ['4', '6', '7', '2019-09']
lastUpdated: '2022-08-31'
- name: JSONSchema::Validator
description: 'JSON Schema and OpenAPI data validator for Perl'
toolingTypes: ['validator']
languages: ['Perl']
maintainers:
- name: 'Alexey Stavrov'
username: 'Logioniz'
platform: 'github'
license: 'MIT'
source: 'https://github.com/skbkontur/perl-jsonschema-validator'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
- name: Opis Json Schema
description: 'JSON Schema validator for PHP'
toolingTypes: ['validator']
languages: ['PHP']
maintainers:
- name: 'Sorin Sarca'
username: 'sorinsarca'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/opis/json-schema'
homepage: 'https://github.com/opis/json-schema'
supportedDialects:
draft: ['6', '7', '2019-09', '2020-12']
compliance:
config:
docs: https://opis.io/json-schema/2.x/php-loader.html#parser-options
instructions: 'set several options to their "vanilla" values'
lastUpdated: '2022-08-31'
bowtie:
identifier: 'php-opis-json-schema'
- name: Swaggest Json Schema
description: 'High definition PHP structures with JSON-schema based validation'
toolingTypes: ['validator']
languages: ['PHP']
maintainers:
- name: 'Viacheslav Poturaev'
username: 'vearutop'
platform: 'github'
license: 'MIT'
source: 'https://github.com/swaggest/php-json-schema'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
- name: jschon
description: 'An object-oriented JSON Schema implementation for Python.'
toolingTypes: ['validator']
languages: ['Python']
maintainers:
- name: 'Mark Joseph'
username: 'marksparkza'
platform: 'github'
license: 'MIT'
source: 'https://github.com/marksparkza/jschon'
homepage: 'https://jschon.readthedocs.io/'
supportedDialects:
draft: ['2019-09', '2020-12']
lastUpdated: '2022-08-31'
bowtie:
identifier: 'python-jschon'
- name: jsonschema
description: 'An implementation of the JSON Schema specification for Python'
toolingTypes: ['validator']
languages: ['Python']
maintainers:
- name: 'Julian Berman'
username: 'Julian'
platform: 'github'
license: 'MIT'
source: 'https://github.com/python-jsonschema/jsonschema'
homepage: 'https://python-jsonschema.readthedocs.io/'
supportedDialects:
draft: ['3', '4', '6', '7', '2019-09', '2020-12']
lastUpdated: '2022-11-09'
bowtie:
identifier: 'python-jsonschema'
- name: fastjsonschema
description: 'Fast JSON schema validator for Python'
toolingTypes: ['validator']
languages: ['Python']
maintainers:
- name: 'Michal Hořejšek'
username: 'horejsek'
platform: 'github'
license: 'BSD-3-Clause'
source: 'https://github.com/horejsek/python-fastjsonschema'
homepage: 'https://horejsek.github.io/python-fastjsonschema/'
supportedDialects:
draft: ['4', '6', '7']
toolingListingNotes: 'Great performance thanks to code generation.'
lastUpdated: '2022-08-31'
bowtie:
identifier: 'python-fastjsonschema'
- name: jsonschema-rs (Python)
description: 'JSON Schema validation library'
toolingTypes: ['validator']
languages: ['Python']
dependsOnValidators: ['https://github.com/Stranger6667/jsonschema-rs']
maintainers:
- name: 'Dmitry Dygalo'
username: 'Stranger6667'
platform: 'github'
license: 'MIT'
source: 'https://github.com/Stranger6667/jsonschema-rs/tree/master/bindings/python'
supportedDialects:
draft: ['4', '6', '7']
toolingListingNotes: "Python bindings to Rust's jsonschema crate"
lastUpdated: '2022-08-31'
- name: jsonschema-rs
description: 'JSON Schema validation library'
toolingTypes: ['validator']
languages: ['Rust']
maintainers:
- name: 'Dmitry Dygalo'
username: 'Stranger6667'
platform: 'github'
license: 'MIT'
source: 'https://github.com/Stranger6667/jsonschema-rs'
homepage: 'https://docs.rs/jsonschema'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
toolingListingNotes: 'Fast due to compiling schema into a validation tree; 2019-09 and 2020-12 are partially supported'
lastUpdated: '2022-08-31'
bowtie:
identifier: 'rust-jsonschema'
- name: JSONSchemer
description: 'JSON Schema validator. Supports drafts 4, 6, 7, 2019-09, 2020-12, OpenAPI 3.0, and OpenAPI 3.1.'
toolingTypes: ['validator']
languages: ['Ruby']
maintainers:
- name: 'David Harsha'
username: 'davishmcclurg'
platform: 'github'
license: 'MIT'
source: 'https://github.com/davishmcclurg/json_schemer'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
lastUpdated: '2023-08-20'
bowtie:
identifier: 'ruby-json_schemer'
- name: JSI
description: 'JSI: JSON Schema Instantiation in Ruby'
toolingTypes: ['validator']
languages: ['Ruby']
maintainers:
- name: 'Ethan'
username: 'notEthan'
platform: 'github'
license: 'AGPL-3.0-only'
source: 'https://github.com/notEthan/jsi/'
homepage: 'https://rubydoc.info/gems/jsi'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
- name: boon
description: 'JSONSchema (draft 2020-12, draft 2019-09, draft-7, draft-6, draft-4) Validation in Rust'
toolingTypes: ['validator']
languages: ['Rust']
maintainers:
- name: 'Santhosh Tekuri'
username: 'santhosh-tekuri'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/santhosh-tekuri/boon'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
lastUpdated: '2023-02-22'
bowtie:
identifier: 'rust-boon'
- name: Reactive Core Circe JSON Validator
description: 'This is a Scala implementation of a JSON Schema validator based upon the great io.circe Library.'
toolingTypes: ['validator']
languages: ['Scala']
maintainers:
- name: 'Norbert Schultz'
username: 'nob13'
platform: 'github'
license: 'Apache-2.0'
source: 'https://github.com/reactivecore/rc-circe-json-schema'
supportedDialects:
draft: ['2019-09', '2020-12']
toolingListingNotes: 'Based on Circe-Library -Early state and API may not be stable. Not yet produciton ready.'
lastUpdated: '2022-08-31'
bowtie:
identifier: 'scala-rc-circe-json-validator'
- name: DSJSONSchemaValidation
description: 'JSON Schema draft 4, 6 and 7 parsing and validation library written in Objective-C.'
toolingTypes: ['validator']
languages: ['Objective-C']
maintainers:
- name: 'Andrei Podkovyrin'
username: 'podkovyrin'
platform: 'github'
license: 'MIT'
source: 'https://github.com/dashevo/JSONSchemaValidation'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
- name: lua-resty-jsonschema
description: 'Pure Lua JSON schema validator for Lua/LuaJIT'
toolingTypes: ['validator']
languages: ['Lua/LuaJIT']
maintainers:
- name: 'YuanSheng Wang'
username: 'membphis'
platform: 'github'
license: 'MIT'
source: 'https://github.com/iresty/lua-resty-jsonschema'
homepage: 'https://www.apiseven.com/'
supportedDialects:
draft: ['4', '6', '7']
lastUpdated: '2022-08-31'
- name: json-schema.hyperjump.io
description: 'Validate JSON Schema documents online using @hyperjump/json-schema'
toolingTypes: ['validator']
environments: ['Web (Online)']
dependsOnValidators: ['https://github.com/hyperjump-io/json-schema']
maintainers:
- name: 'Jason Desrosiers'
username: 'jdesrosiers'
platform: 'github'
license: 'MIT'
source: 'https://github.com/hyperjump-io/json-schema.hyperjump.io'
homepage: 'https://json-schema.hyperjump.io'
supportedDialects:
draft: ['4', '6', '7', '2019-09', '2020-12']
toolingListingNotes: 'Supports multiple schemas and multiple instances; client-side validation'
lastUpdated: '2022-08-31'
- name: json-everything
description: 'System.Text.Json-based support for all of your JSON needs.'
toolingTypes: ['validator']
environments: ['Web (Online)']
dependsOnValidators: ['https://github.com/gregsdennis/json-everything']
maintainers:
- name: 'Greg Dennis'
username: 'gregsdennis'
platform: 'github'
license: 'MIT'
source: 'https://github.com/gregsdennis/json-everything'
homepage: 'https://json-everything.net/json-schema'
supportedDialects:
draft: ['6', '7', '2019-09', '2020-12']
toolingListingNotes: 'Powered by JsonSchema.Net in Blazor WASM for client-side validation'
landscape:
logo: 'json-everything.svg'
lastUpdated: '2022-08-31'
bowtie:
identifier: 'dotnet-jsonschema-net'
- name: jschon.dev
description: 'JSON Schema web validator built on jschon.'
toolingTypes: ['validator']
environments: ['Web (Online)']
dependsOnValidators: ['https://github.com/marksparkza/jschon']
maintainers:
- name: 'Mark Joseph'
username: 'marksparkza'
platform: 'github'
license: 'MIT'
source: 'https://github.com/marksparkza/jschon.dev'
homepage: 'https://jschon.dev/'
supportedDialects:
draft: ['2019-09', '2020-12']
lastUpdated: '2022-08-31'
- name: JSON Schema Validator
description: 'An online, interactive JSON Schema validator. Supports JSON Schema Draft 3, Draft 4, Draft 6, Draft 7, Draft 2019-09 and Draft 2020-12.'
toolingTypes: ['validator']
environments: ['Web (Online)']
dependsOnValidators: ['https://github.com/JamesNK/Newtonsoft.Json.Schema']
maintainers:
- name: 'James Newton-King'
username: 'JamesNK'
platform: 'github'
license: 'AGPL-3.0-only'
source: 'https://github.com/JamesNK/Newtonsoft.Json.Schema?tab=License-1-ov-file'
homepage: 'https://www.jsonschemavalidator.net/'
supportedDialects:
draft: ['3', '4', '6', '7', '2019-09', '2020-12']
toolingListingNotes: 'Server-side validation'
lastUpdated: '2024-05-29'
- name: jsonschema.dev
description: 'JSON Schema dev'
toolingTypes: ['validator']
environments: ['Web (Online)']
dependsOnValidators: ['https://github.com/ajv-validator/ajv']
maintainers:
- name: 'Ben Hutton'
username: 'Relequestual'
platform: 'github'
license: 'MIT'
source: 'https://github.com/Relequestual/json-schema-dev'
homepage: 'https://jsonschema.dev'
supportedDialects:
draft: ['7']
toolingListingNotes: 'Client-side validation'
lastUpdated: '2022-08-31'
- name: JSON Schema Lint