summaryrefslogtreecommitdiff
path: root/json/remotes/draft-next/name-defs.json
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2022-08-31 17:37:32 +0300
committerJulian Berman <Julian@GrayVines.com>2022-08-31 17:37:32 +0300
commit2f15a98f9243b77ff8f546e8b28cbbdabd7fef23 (patch)
tree3e6370ffbd0dcb95f2bb93037702c1976497303c /json/remotes/draft-next/name-defs.json
parent575e786be8bad3f7bc628e2abe09defc3d7fb0bd (diff)
parent65802a7ebcd0b661c829307354ab0c24e1e05031 (diff)
downloadjsonschema-2f15a98f9243b77ff8f546e8b28cbbdabd7fef23.tar.gz
Merge commit '65802a7ebcd0b661c829307354ab0c24e1e05031'
* commit '65802a7ebcd0b661c829307354ab0c24e1e05031': Squashed 'json/' changes from 4cfead7ba..6eaf7dff4
Diffstat (limited to 'json/remotes/draft-next/name-defs.json')
-rw-r--r--json/remotes/draft-next/name-defs.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/json/remotes/draft-next/name-defs.json b/json/remotes/draft-next/name-defs.json
new file mode 100644
index 0000000..cdb8c0c
--- /dev/null
+++ b/json/remotes/draft-next/name-defs.json
@@ -0,0 +1,16 @@
+{
+ "$schema": "https://json-schema.org/draft/next/schema",
+ "$defs": {
+ "orNull": {
+ "anyOf": [
+ {
+ "type": "null"
+ },
+ {
+ "$ref": "#"
+ }
+ ]
+ }
+ },
+ "type": "string"
+}