-
-
Notifications
You must be signed in to change notification settings - Fork 581
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'json/' changes from a9a1e2e..95fe6ca
95fe6ca Merge pull request #694 from json-schema-org/heterogeneous-additionalItems 9c88a0b Merge pull request #697 from json-schema-org/gregsdennis/add-ref-into-known-nonapplicator fea2cf1 add tests for 2019 and 2020 6695ca3 add optional tests for `$ref`ing into known non-applicator keywords cda4281 Merge pull request #695 from json-schema-org/ether/clean-up-subSchemas 7b9f45c move subSchemas-defs.json to subSchemas.json e41ec0e remove unused definition files 349c5a8 Merge pull request #692 from json-schema-org/ether/fix-subSchemas-refs 451baca Merge pull request #670 from marksparkza/invalid-output-test b8da838 Add tests for heterogeneous arrays with additionalItems 6d7a44b fix subschema locations and their $refs ea0b63c Remove invalid output tests git-subtree-dir: json git-subtree-split: 95fe6ca20a90a019f4538f3670b6dd49d91dfdee
- Loading branch information
Showing
27 changed files
with
247 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/next/schema", | ||
"integer": { | ||
"type": "integer" | ||
}, | ||
"refToInteger": { | ||
"$ref": "#/integer" | ||
"$defs": { | ||
"integer": { | ||
"type": "integer" | ||
}, | ||
"refToInteger": { | ||
"$ref": "#/$defs/integer" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2019-09/schema", | ||
"integer": { | ||
"type": "integer" | ||
}, | ||
"refToInteger": { | ||
"$ref": "#/integer" | ||
"$defs": { | ||
"integer": { | ||
"type": "integer" | ||
}, | ||
"refToInteger": { | ||
"$ref": "#/$defs/integer" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"integer": { | ||
"type": "integer" | ||
}, | ||
"refToInteger": { | ||
"$ref": "#/integer" | ||
"$defs": { | ||
"integer": { | ||
"type": "integer" | ||
}, | ||
"refToInteger": { | ||
"$ref": "#/$defs/integer" | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
{ | ||
"integer": { | ||
"type": "integer" | ||
}, | ||
"refToInteger": { | ||
"$ref": "#/integer" | ||
"definitions": { | ||
"integer": { | ||
"type": "integer" | ||
}, | ||
"refToInteger": { | ||
"$ref": "#/definitions/integer" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.