From ae1a49065f8f5a5d6824a2f258c1a1140ee9261f Mon Sep 17 00:00:00 2001 From: chris48s Date: Fri, 23 Aug 2024 20:17:44 +0100 Subject: [PATCH 1/3] add v8r to list of validators --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e304c09..c34a2ea 100644 --- a/README.md +++ b/README.md @@ -426,6 +426,7 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list. * [request-validator](https://github.com/bugventure/request-validator) - Flexible request validator middleware for express and connect. * [tv4](https://github.com/geraintluff/tv4) - Tiny Validator. * [ajv](https://github.com/ajv-validator/ajv) - The fastest validator. Supports v5/6 proposals. +* [v8r](https://github.com/chris48s/v8r) - Smart validator that uses [Schema Store](https://www.schemastore.org) to detect a suitable schema for your input files based on the filename. **Java and Kotlin** * [Medeia Validator](https://github.com/worldturner/medeia-validator) - Compliant (draft-04/06/07) and fast streaming validator written in Kotlin From 42bfd35a1a970e6daab69a75dd4bee26e584e565 Mon Sep 17 00:00:00 2001 From: chris48s Date: Fri, 23 Aug 2024 20:18:26 +0100 Subject: [PATCH 2/3] update AJV schema support --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c34a2ea..8a6b3f3 100644 --- a/README.md +++ b/README.md @@ -425,7 +425,7 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list. * [jjv](https://github.com/acornejo/jjv) - Javascript Library for Schema Validation. * [request-validator](https://github.com/bugventure/request-validator) - Flexible request validator middleware for express and connect. * [tv4](https://github.com/geraintluff/tv4) - Tiny Validator. -* [ajv](https://github.com/ajv-validator/ajv) - The fastest validator. Supports v5/6 proposals. +* [ajv](https://github.com/ajv-validator/ajv) - The fastest validator. Supports JSON Schema draft-04/06/07/2019-09/2020-12. * [v8r](https://github.com/chris48s/v8r) - Smart validator that uses [Schema Store](https://www.schemastore.org) to detect a suitable schema for your input files based on the filename. **Java and Kotlin** From 9fe72fa8c342eb1b26057cd08f897615c7f645ff Mon Sep 17 00:00:00 2001 From: chris48s Date: Fri, 23 Aug 2024 20:19:20 +0100 Subject: [PATCH 3/3] remove request-validator --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 8a6b3f3..c0787db 100644 --- a/README.md +++ b/README.md @@ -423,7 +423,6 @@ Inspired by the [awesome](https://github.com/sindresorhus/awesome) list. * [jsck](https://github.com/pandastrike/jsck) - JSON Schema Compiled checK. * [z-schema](https://github.com/zaggino/z-schema) - validator written in JavaScript for NodeJS and Browsers. * [jjv](https://github.com/acornejo/jjv) - Javascript Library for Schema Validation. -* [request-validator](https://github.com/bugventure/request-validator) - Flexible request validator middleware for express and connect. * [tv4](https://github.com/geraintluff/tv4) - Tiny Validator. * [ajv](https://github.com/ajv-validator/ajv) - The fastest validator. Supports JSON Schema draft-04/06/07/2019-09/2020-12. * [v8r](https://github.com/chris48s/v8r) - Smart validator that uses [Schema Store](https://www.schemastore.org) to detect a suitable schema for your input files based on the filename.