boon now included

This commit is contained in:
2025-09-30 01:10:58 -04:00
parent c9b1245a57
commit cc04f38c14
77 changed files with 12905 additions and 52 deletions

View File

@ -0,0 +1,33 @@
{
"remotes": {
"http://localhost:1234/draft2020-12/locationIndependentIdentifier.json": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$defs": {
"refToInteger": {
"$ref": "#foo"
},
"A": {
"$anchor": "foo",
"type": "integer"
}
}
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"a": {
"$ref": "http://localhost:1234/draft2020-12/locationIndependentIdentifier.json#foo"
},
"b": {
"$ref": "http://localhost:1234/draft2020-12/locationIndependentIdentifier.json#foo"
}
}
},
"data": {
"a": 1,
"b": "hello"
},
"valid": false
}