diff options
Diffstat (limited to 'third_party/python/jsonschema/json/remotes')
5 files changed, 44 insertions, 0 deletions
diff --git a/third_party/python/jsonschema/json/remotes/folder/folderInteger.json b/third_party/python/jsonschema/json/remotes/folder/folderInteger.json new file mode 100644 index 0000000000..8b50ea3085 --- /dev/null +++ b/third_party/python/jsonschema/json/remotes/folder/folderInteger.json @@ -0,0 +1,3 @@ +{ + "type": "integer" +} diff --git a/third_party/python/jsonschema/json/remotes/integer.json b/third_party/python/jsonschema/json/remotes/integer.json new file mode 100644 index 0000000000..8b50ea3085 --- /dev/null +++ b/third_party/python/jsonschema/json/remotes/integer.json @@ -0,0 +1,3 @@ +{ + "type": "integer" +} diff --git a/third_party/python/jsonschema/json/remotes/name-defs.json b/third_party/python/jsonschema/json/remotes/name-defs.json new file mode 100644 index 0000000000..1dab4a4343 --- /dev/null +++ b/third_party/python/jsonschema/json/remotes/name-defs.json @@ -0,0 +1,15 @@ +{ + "$defs": { + "orNull": { + "anyOf": [ + { + "type": "null" + }, + { + "$ref": "#" + } + ] + } + }, + "type": "string" +} diff --git a/third_party/python/jsonschema/json/remotes/name.json b/third_party/python/jsonschema/json/remotes/name.json new file mode 100644 index 0000000000..fceacb8097 --- /dev/null +++ b/third_party/python/jsonschema/json/remotes/name.json @@ -0,0 +1,15 @@ +{ + "definitions": { + "orNull": { + "anyOf": [ + { + "type": "null" + }, + { + "$ref": "#" + } + ] + } + }, + "type": "string" +} diff --git a/third_party/python/jsonschema/json/remotes/subSchemas.json b/third_party/python/jsonschema/json/remotes/subSchemas.json new file mode 100644 index 0000000000..9f8030bceb --- /dev/null +++ b/third_party/python/jsonschema/json/remotes/subSchemas.json @@ -0,0 +1,8 @@ +{ + "integer": { + "type": "integer" + }, + "refToInteger": { + "$ref": "#/integer" + } +} |