Skip to content

Commit d9f9a94

Browse files
committed
update README.md: reflect new repository owner
The repository owner of Java's `json-schema-validator` has been changed from `fge` to `daveclayton`. Update all occurrences.
1 parent c033bdd commit d9f9a94

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,14 @@ It uses the [org.json API](http://stleary.github.io/JSON-java/) (created by Doug
1818
# When to use this library?
1919

2020
Lets assume that you already know what JSON Schema is, and you want to utilize it in a Java application to validate JSON data.
21-
But - as you may have already discovered - there is also an [other Java implementation](https://github.com/fge/json-schema-validator)
21+
But - as you may have already discovered - there is also an [other Java implementation][daveclayton/json-schema-validator]
2222
of the JSON Schema specification. So here are some advices about which one to use:
23-
* if you use Jackson to handle JSON in Java code, then fge/json-schema-validator is obviously a better choice, since it
24-
uses Jackson
23+
* if you use Jackson to handle JSON in Java code, then [daveclayton/json-schema-validator] is obviously a better choice, since it uses Jackson
2524
* if you want to use the [org.json API](http://www.json.org/java/) then this library is the better choice
2625
* if you want to use anything else for handling JSON (like GSON or javax.json), then you are in a little trouble, since
2726
currently there is no schema validation library backed by these libraries. It means that you will have to parse the JSON
2827
twice: once for the schema validator, and once for your own processing. In a case like that, this library is probably still
29-
a better choice, since it seems to be [twice faster](https://github.com/erosb/json-schema-perftest) than the Jackson-based fge
30-
library.
28+
a better choice, since it seems to be [twice faster](https://github.com/erosb/json-schema-perftest) than the Jackson-based [daveclayton][daveclayton/json-schema-validator] library.
3129

3230

3331
## Maven installation
@@ -235,3 +233,4 @@ SchemaLoader schemaLoader = SchemaLoader.builder()
235233
[ASL 2.0]: https://www.apache.org/licenses/LICENSE-2.0
236234
[Travis badge master]: https://travis-ci.org/everit-org/json-schema.svg?branch=master
237235
[Travis]: https://travis-ci.org/everit-org/json-schema
236+
[daveclayton/json-schema-validator]: https://github.com/daveclayton/json-schema-validator

0 commit comments

Comments
 (0)