diff options
Diffstat (limited to 'remotes/draft-next/name-defs.json')
-rw-r--r-- | remotes/draft-next/name-defs.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/remotes/draft-next/name-defs.json b/remotes/draft-next/name-defs.json new file mode 100644 index 0000000..cdb8c0c --- /dev/null +++ b/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" +} |