From b450fc2d6a169dba6558434bc8b9981e2ed0596c Mon Sep 17 00:00:00 2001 From: Sahil-Shadwal Date: Fri, 27 Dec 2024 12:28:37 +0530 Subject: [PATCH 1/5] Add Jaronuinga JSON Schema validator to tooling data --- data/tooling-data.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/data/tooling-data.yaml b/data/tooling-data.yaml index 17449638b..af3b16388 100644 --- a/data/tooling-data.yaml +++ b/data/tooling-data.yaml @@ -3034,3 +3034,26 @@ source: 'https://github.com/andreineculau/json-schema-random' license: 'Apache-2.0' status: 'obsolete' + +name: Jaronuinga + description: > + Jaronuinga is a simple JSON Schema validator written in Java. It is based on JSONP 1.1 and has no other dependencies. + The library's primary purpose is to intercept the parsing process for additional custom analysis (e.g., verifying "foreign keys" on data submission). + It may also be used for schema analysis via `getParent()` and `getChildren()` methods. + toolingTypes: ['validator'] + languages: ['Java 17'] + dependencies: ['JSON-P 1.1 API'] + maintainers: + - name: 'Dmitry Repchevsky' + username: 'Dmitry Repchevsky' + platform: 'github' + license: 'LGPL 2.1 or later' + source: 'https://github.com/elixir-europe/java-json-schema-validator' + supportedDialects: + draft: ['1', '2', '3', '4', '5', '6', '7', '2019-09', '2020-12'] + compliance: + summary: > + Passes most of the JSON-Schema-Test-Suite (via JUnit tests). + Not all string formats are supported. + No support for `$vocabulary` yet; requires refactoring to generalize vocabulary support via services. + lastUpdated: '2024-10-01' From 62784ccb710f06ffe86b89fe87dc8403a387aea5 Mon Sep 17 00:00:00 2001 From: Sahil-Shadwal Date: Fri, 27 Dec 2024 12:36:12 +0530 Subject: [PATCH 2/5] fix --- data/tooling-data.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/data/tooling-data.yaml b/data/tooling-data.yaml index af3b16388..6cba645bd 100644 --- a/data/tooling-data.yaml +++ b/data/tooling-data.yaml @@ -3035,7 +3035,7 @@ license: 'Apache-2.0' status: 'obsolete' -name: Jaronuinga +- name: Jaronuinga description: > Jaronuinga is a simple JSON Schema validator written in Java. It is based on JSONP 1.1 and has no other dependencies. The library's primary purpose is to intercept the parsing process for additional custom analysis (e.g., verifying "foreign keys" on data submission). @@ -3051,9 +3051,4 @@ name: Jaronuinga source: 'https://github.com/elixir-europe/java-json-schema-validator' supportedDialects: draft: ['1', '2', '3', '4', '5', '6', '7', '2019-09', '2020-12'] - compliance: - summary: > - Passes most of the JSON-Schema-Test-Suite (via JUnit tests). - Not all string formats are supported. - No support for `$vocabulary` yet; requires refactoring to generalize vocabulary support via services. lastUpdated: '2024-10-01' From b2e760272db53b7acd227d3e09fa7e68a1aa4c96 Mon Sep 17 00:00:00 2001 From: Sahil-Shadwal Date: Fri, 27 Dec 2024 12:57:52 +0530 Subject: [PATCH 3/5] Refactor tooling data to update dependency field and add compliance instructions --- data/tooling-data.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/data/tooling-data.yaml b/data/tooling-data.yaml index 6cba645bd..daea90cbb 100644 --- a/data/tooling-data.yaml +++ b/data/tooling-data.yaml @@ -3042,7 +3042,7 @@ It may also be used for schema analysis via `getParent()` and `getChildren()` methods. toolingTypes: ['validator'] languages: ['Java 17'] - dependencies: ['JSON-P 1.1 API'] + dependsOnValidators: ['JSON-P 1.1 API'] maintainers: - name: 'Dmitry Repchevsky' username: 'Dmitry Repchevsky' @@ -3051,4 +3051,10 @@ source: 'https://github.com/elixir-europe/java-json-schema-validator' supportedDialects: draft: ['1', '2', '3', '4', '5', '6', '7', '2019-09', '2020-12'] + compliance: + config: + docs: 'https://github.com/elixir-europe/java-json-schema-validator?tab=readme-ov-file#java-json-schema-validation-library-based-on-jsonp-v11-json-parser' # Replace with the actual documentation URL. + instructions: + 'Refactor the schema parsing logic to support `$vocabulary` and ensure all string formats + required by the latest JSON Schema specifications are implemented.' lastUpdated: '2024-10-01' From f14e6d259c11a0c4c2e3483c8000d546c99ebf43 Mon Sep 17 00:00:00 2001 From: Sahil-Shadwal Date: Fri, 27 Dec 2024 13:08:13 +0530 Subject: [PATCH 4/5] Update tooling data to replace validator dependency URL and refine compliance --- data/tooling-data.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/data/tooling-data.yaml b/data/tooling-data.yaml index daea90cbb..b64c03a74 100644 --- a/data/tooling-data.yaml +++ b/data/tooling-data.yaml @@ -3042,7 +3042,7 @@ It may also be used for schema analysis via `getParent()` and `getChildren()` methods. toolingTypes: ['validator'] languages: ['Java 17'] - dependsOnValidators: ['JSON-P 1.1 API'] + dependsOnValidators: ['https://javaee.github.io/jsonp/'] maintainers: - name: 'Dmitry Repchevsky' username: 'Dmitry Repchevsky' @@ -3053,7 +3053,6 @@ draft: ['1', '2', '3', '4', '5', '6', '7', '2019-09', '2020-12'] compliance: config: - docs: 'https://github.com/elixir-europe/java-json-schema-validator?tab=readme-ov-file#java-json-schema-validation-library-based-on-jsonp-v11-json-parser' # Replace with the actual documentation URL. instructions: 'Refactor the schema parsing logic to support `$vocabulary` and ensure all string formats required by the latest JSON Schema specifications are implemented.' From 7bd5bfb058a9f88054eef16510b6f46a824939cf Mon Sep 17 00:00:00 2001 From: Sahil-Shadwal Date: Tue, 31 Dec 2024 09:45:04 +0530 Subject: [PATCH 5/5] Update Jaronuinga description and refine supported dialects in tooling data --- data/tooling-data.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/data/tooling-data.yaml b/data/tooling-data.yaml index b64c03a74..6773b0a31 100644 --- a/data/tooling-data.yaml +++ b/data/tooling-data.yaml @@ -3037,12 +3037,11 @@ - name: Jaronuinga description: > - Jaronuinga is a simple JSON Schema validator written in Java. It is based on JSONP 1.1 and has no other dependencies. + Jaronuinga is a simple JSON Schema validator written in Java 17. It is based on JSONP 1.1 and has no other dependencies. The library's primary purpose is to intercept the parsing process for additional custom analysis (e.g., verifying "foreign keys" on data submission). It may also be used for schema analysis via `getParent()` and `getChildren()` methods. toolingTypes: ['validator'] - languages: ['Java 17'] - dependsOnValidators: ['https://javaee.github.io/jsonp/'] + languages: ['Java'] maintainers: - name: 'Dmitry Repchevsky' username: 'Dmitry Repchevsky' @@ -3050,10 +3049,5 @@ license: 'LGPL 2.1 or later' source: 'https://github.com/elixir-europe/java-json-schema-validator' supportedDialects: - draft: ['1', '2', '3', '4', '5', '6', '7', '2019-09', '2020-12'] - compliance: - config: - instructions: - 'Refactor the schema parsing logic to support `$vocabulary` and ensure all string formats - required by the latest JSON Schema specifications are implemented.' + draft: ['4', '6', '7', '2019-09', '2020-12'] lastUpdated: '2024-10-01'