You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,11 +90,11 @@ This is a simplified backport with the following changes from the original:
90
90
91
91
These vulnerabilities exist in the upstream OpenJDK sandbox implementation and are reported here for transparency.
92
92
93
-
## JSON Schema Validator (2020-12)
93
+
## JSON Schema Validator
94
94
95
95
By including a basic schema validator that demonstrates how to build a realistic feature out of the core API. To demonstrate the power of the core API, it follows Data Oriented Programming principles: it parses JSON Schema into an immutable structure of records, then for validation it parses the JSON to the generic structure and uses the thread-safe parsed schema as the model to validate the JSON being checked.
96
96
97
-
A simple JSON Schema (2020-12 subset) validator is included (module: json-java21-schema).
97
+
A simple JSON Schema validator is included (module: json-java21-schema).
98
98
99
99
```java
100
100
var schema =io.github.simbo1905.json.schema.JsonSchema.compile(
@@ -328,12 +328,9 @@ This backport includes a compatibility report tool that tests against the [JSON
328
328
329
329
### Running the Compatibility Report
330
330
331
-
First, build the project and download the test suite:
331
+
The test data is bundled as ZIP files and extracted automatically at runtime:
0 commit comments