fix
This commit is contained in:
45
book/node_modules/jsonschema/schema/draft-03/hyper-schema.json
generated
vendored
Normal file
45
book/node_modules/jsonschema/schema/draft-03/hyper-schema.json
generated
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-03/hyper-schema#",
|
||||
"id": "http://json-schema.org/draft-03/hyper-schema#",
|
||||
"extends": { "$ref": "http://json-schema.org/draft-03/schema#" },
|
||||
"properties": {
|
||||
"links": {
|
||||
"type": "array",
|
||||
"items": { "$ref": "http://json-schema.org/draft-03/links#" }
|
||||
},
|
||||
"fragmentResolution": {
|
||||
"type": "string",
|
||||
"default": "slash-delimited"
|
||||
},
|
||||
"readonly": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"contentEncoding": {
|
||||
"type": "string"
|
||||
},
|
||||
"pathStart": {
|
||||
"type": "string",
|
||||
"format": "uri"
|
||||
},
|
||||
"mediaType": {
|
||||
"type": "string",
|
||||
"format": "media-type"
|
||||
}
|
||||
},
|
||||
"links": [
|
||||
{
|
||||
"href": "{id}",
|
||||
"rel": "self"
|
||||
},
|
||||
{
|
||||
"href": "{$ref}",
|
||||
"rel": "full"
|
||||
},
|
||||
{
|
||||
"href": "{$schema}",
|
||||
"rel": "describedby"
|
||||
}
|
||||
],
|
||||
"fragmentResolution": "slash-delimited"
|
||||
}
|
174
book/node_modules/jsonschema/schema/draft-03/schema.json
generated
vendored
Normal file
174
book/node_modules/jsonschema/schema/draft-03/schema.json
generated
vendored
Normal file
@ -0,0 +1,174 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-03/schema#",
|
||||
"id": "http://json-schema.org/draft-03/schema#",
|
||||
"type": "object",
|
||||
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": [ "string", "array" ],
|
||||
"items": {
|
||||
"type": [ "string", { "$ref": "#" } ]
|
||||
},
|
||||
"uniqueItems": true,
|
||||
"default": "any"
|
||||
},
|
||||
|
||||
"properties": {
|
||||
"type": "object",
|
||||
"additionalProperties": { "$ref": "#" },
|
||||
"default": {}
|
||||
},
|
||||
|
||||
"patternProperties": {
|
||||
"type": "object",
|
||||
"additionalProperties": { "$ref": "#" },
|
||||
"default": {}
|
||||
},
|
||||
|
||||
"additionalProperties": {
|
||||
"type": [ { "$ref": "#" }, "boolean" ],
|
||||
"default": {}
|
||||
},
|
||||
|
||||
"items": {
|
||||
"type": [ { "$ref": "#" }, "array" ],
|
||||
"items": { "$ref": "#" },
|
||||
"default": {}
|
||||
},
|
||||
|
||||
"additionalItems": {
|
||||
"type": [ { "$ref": "#" }, "boolean" ],
|
||||
"default": {}
|
||||
},
|
||||
|
||||
"required": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
|
||||
"dependencies": {
|
||||
"type": "object",
|
||||
"additionalProperties": {
|
||||
"type": [ "string", "array", { "$ref": "#" } ],
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"default": {}
|
||||
},
|
||||
|
||||
"minimum": {
|
||||
"type": "number"
|
||||
},
|
||||
|
||||
"maximum": {
|
||||
"type": "number"
|
||||
},
|
||||
|
||||
"exclusiveMinimum": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
|
||||
"exclusiveMaximum": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
|
||||
"minItems": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"default": 0
|
||||
},
|
||||
|
||||
"maxItems": {
|
||||
"type": "integer",
|
||||
"minimum": 0
|
||||
},
|
||||
|
||||
"uniqueItems": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
|
||||
"pattern": {
|
||||
"type": "string",
|
||||
"format": "regex"
|
||||
},
|
||||
|
||||
"minLength": {
|
||||
"type": "integer",
|
||||
"minimum": 0,
|
||||
"default": 0
|
||||
},
|
||||
|
||||
"maxLength": {
|
||||
"type": "integer"
|
||||
},
|
||||
|
||||
"enum": {
|
||||
"type": "array",
|
||||
"minItems": 1,
|
||||
"uniqueItems": true
|
||||
},
|
||||
|
||||
"default": {
|
||||
"type": "any"
|
||||
},
|
||||
|
||||
"title": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
"format": {
|
||||
"type": "string"
|
||||
},
|
||||
|
||||
"divisibleBy": {
|
||||
"type": "number",
|
||||
"minimum": 0,
|
||||
"exclusiveMinimum": true,
|
||||
"default": 1
|
||||
},
|
||||
|
||||
"disallow": {
|
||||
"type": [ "string", "array" ],
|
||||
"items": {
|
||||
"type": [ "string", { "$ref": "#" } ]
|
||||
},
|
||||
"uniqueItems": true
|
||||
},
|
||||
|
||||
"extends": {
|
||||
"type": [ { "$ref": "#" }, "array" ],
|
||||
"items": { "$ref": "#" },
|
||||
"default": {}
|
||||
},
|
||||
|
||||
"id": {
|
||||
"type": "string",
|
||||
"format": "uri"
|
||||
},
|
||||
|
||||
"$ref": {
|
||||
"type": "string",
|
||||
"format": "uri"
|
||||
},
|
||||
|
||||
"$schema": {
|
||||
"type": "string",
|
||||
"format": "uri"
|
||||
}
|
||||
},
|
||||
|
||||
"dependencies": {
|
||||
"exclusiveMinimum": "minimum",
|
||||
"exclusiveMaximum": "maximum"
|
||||
},
|
||||
|
||||
"default": {}
|
||||
}
|
Reference in New Issue
Block a user