Initial import with skill sheet working
This commit is contained in:
		
							
								
								
									
										17
									
								
								node_modules/ajv/lib/refs/data.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								node_modules/ajv/lib/refs/data.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| { | ||||
|     "$schema": "http://json-schema.org/draft-07/schema#", | ||||
|     "$id": "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#", | ||||
|     "description": "Meta-schema for $data reference (JSON Schema extension proposal)", | ||||
|     "type": "object", | ||||
|     "required": [ "$data" ], | ||||
|     "properties": { | ||||
|         "$data": { | ||||
|             "type": "string", | ||||
|             "anyOf": [ | ||||
|                 { "format": "relative-json-pointer" },  | ||||
|                 { "format": "json-pointer" } | ||||
|             ] | ||||
|         } | ||||
|     }, | ||||
|     "additionalProperties": false | ||||
| } | ||||
							
								
								
									
										149
									
								
								node_modules/ajv/lib/refs/json-schema-draft-04.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										149
									
								
								node_modules/ajv/lib/refs/json-schema-draft-04.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,149 @@ | ||||
| { | ||||
|     "id": "http://json-schema.org/draft-04/schema#", | ||||
|     "$schema": "http://json-schema.org/draft-04/schema#", | ||||
|     "description": "Core schema meta-schema", | ||||
|     "definitions": { | ||||
|         "schemaArray": { | ||||
|             "type": "array", | ||||
|             "minItems": 1, | ||||
|             "items": { "$ref": "#" } | ||||
|         }, | ||||
|         "positiveInteger": { | ||||
|             "type": "integer", | ||||
|             "minimum": 0 | ||||
|         }, | ||||
|         "positiveIntegerDefault0": { | ||||
|             "allOf": [ { "$ref": "#/definitions/positiveInteger" }, { "default": 0 } ] | ||||
|         }, | ||||
|         "simpleTypes": { | ||||
|             "enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ] | ||||
|         }, | ||||
|         "stringArray": { | ||||
|             "type": "array", | ||||
|             "items": { "type": "string" }, | ||||
|             "minItems": 1, | ||||
|             "uniqueItems": true | ||||
|         } | ||||
|     }, | ||||
|     "type": "object", | ||||
|     "properties": { | ||||
|         "id": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "$schema": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "title": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "description": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "default": {}, | ||||
|         "multipleOf": { | ||||
|             "type": "number", | ||||
|             "minimum": 0, | ||||
|             "exclusiveMinimum": true | ||||
|         }, | ||||
|         "maximum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "exclusiveMaximum": { | ||||
|             "type": "boolean", | ||||
|             "default": false | ||||
|         }, | ||||
|         "minimum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "exclusiveMinimum": { | ||||
|             "type": "boolean", | ||||
|             "default": false | ||||
|         }, | ||||
|         "maxLength": { "$ref": "#/definitions/positiveInteger" }, | ||||
|         "minLength": { "$ref": "#/definitions/positiveIntegerDefault0" }, | ||||
|         "pattern": { | ||||
|             "type": "string", | ||||
|             "format": "regex" | ||||
|         }, | ||||
|         "additionalItems": { | ||||
|             "anyOf": [ | ||||
|                 { "type": "boolean" }, | ||||
|                 { "$ref": "#" } | ||||
|             ], | ||||
|             "default": {} | ||||
|         }, | ||||
|         "items": { | ||||
|             "anyOf": [ | ||||
|                 { "$ref": "#" }, | ||||
|                 { "$ref": "#/definitions/schemaArray" } | ||||
|             ], | ||||
|             "default": {} | ||||
|         }, | ||||
|         "maxItems": { "$ref": "#/definitions/positiveInteger" }, | ||||
|         "minItems": { "$ref": "#/definitions/positiveIntegerDefault0" }, | ||||
|         "uniqueItems": { | ||||
|             "type": "boolean", | ||||
|             "default": false | ||||
|         }, | ||||
|         "maxProperties": { "$ref": "#/definitions/positiveInteger" }, | ||||
|         "minProperties": { "$ref": "#/definitions/positiveIntegerDefault0" }, | ||||
|         "required": { "$ref": "#/definitions/stringArray" }, | ||||
|         "additionalProperties": { | ||||
|             "anyOf": [ | ||||
|                 { "type": "boolean" }, | ||||
|                 { "$ref": "#" } | ||||
|             ], | ||||
|             "default": {} | ||||
|         }, | ||||
|         "definitions": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "properties": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "patternProperties": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "dependencies": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { | ||||
|                 "anyOf": [ | ||||
|                     { "$ref": "#" }, | ||||
|                     { "$ref": "#/definitions/stringArray" } | ||||
|                 ] | ||||
|             } | ||||
|         }, | ||||
|         "enum": { | ||||
|             "type": "array", | ||||
|             "minItems": 1, | ||||
|             "uniqueItems": true | ||||
|         }, | ||||
|         "type": { | ||||
|             "anyOf": [ | ||||
|                 { "$ref": "#/definitions/simpleTypes" }, | ||||
|                 { | ||||
|                     "type": "array", | ||||
|                     "items": { "$ref": "#/definitions/simpleTypes" }, | ||||
|                     "minItems": 1, | ||||
|                     "uniqueItems": true | ||||
|                 } | ||||
|             ] | ||||
|         }, | ||||
|         "format": { "type": "string" }, | ||||
|         "allOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "anyOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "oneOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "not": { "$ref": "#" } | ||||
|     }, | ||||
|     "dependencies": { | ||||
|         "exclusiveMaximum": [ "maximum" ], | ||||
|         "exclusiveMinimum": [ "minimum" ] | ||||
|     }, | ||||
|     "default": {} | ||||
| } | ||||
							
								
								
									
										154
									
								
								node_modules/ajv/lib/refs/json-schema-draft-06.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										154
									
								
								node_modules/ajv/lib/refs/json-schema-draft-06.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,154 @@ | ||||
| { | ||||
|     "$schema": "http://json-schema.org/draft-06/schema#", | ||||
|     "$id": "http://json-schema.org/draft-06/schema#", | ||||
|     "title": "Core schema meta-schema", | ||||
|     "definitions": { | ||||
|         "schemaArray": { | ||||
|             "type": "array", | ||||
|             "minItems": 1, | ||||
|             "items": { "$ref": "#" } | ||||
|         }, | ||||
|         "nonNegativeInteger": { | ||||
|             "type": "integer", | ||||
|             "minimum": 0 | ||||
|         }, | ||||
|         "nonNegativeIntegerDefault0": { | ||||
|             "allOf": [ | ||||
|                 { "$ref": "#/definitions/nonNegativeInteger" }, | ||||
|                 { "default": 0 } | ||||
|             ] | ||||
|         }, | ||||
|         "simpleTypes": { | ||||
|             "enum": [ | ||||
|                 "array", | ||||
|                 "boolean", | ||||
|                 "integer", | ||||
|                 "null", | ||||
|                 "number", | ||||
|                 "object", | ||||
|                 "string" | ||||
|             ] | ||||
|         }, | ||||
|         "stringArray": { | ||||
|             "type": "array", | ||||
|             "items": { "type": "string" }, | ||||
|             "uniqueItems": true, | ||||
|             "default": [] | ||||
|         } | ||||
|     }, | ||||
|     "type": ["object", "boolean"], | ||||
|     "properties": { | ||||
|         "$id": { | ||||
|             "type": "string", | ||||
|             "format": "uri-reference" | ||||
|         }, | ||||
|         "$schema": { | ||||
|             "type": "string", | ||||
|             "format": "uri" | ||||
|         }, | ||||
|         "$ref": { | ||||
|             "type": "string", | ||||
|             "format": "uri-reference" | ||||
|         }, | ||||
|         "title": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "description": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "default": {}, | ||||
|         "examples": { | ||||
|             "type": "array", | ||||
|             "items": {} | ||||
|         }, | ||||
|         "multipleOf": { | ||||
|             "type": "number", | ||||
|             "exclusiveMinimum": 0 | ||||
|         }, | ||||
|         "maximum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "exclusiveMaximum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "minimum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "exclusiveMinimum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "maxLength": { "$ref": "#/definitions/nonNegativeInteger" }, | ||||
|         "minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, | ||||
|         "pattern": { | ||||
|             "type": "string", | ||||
|             "format": "regex" | ||||
|         }, | ||||
|         "additionalItems": { "$ref": "#" }, | ||||
|         "items": { | ||||
|             "anyOf": [ | ||||
|                 { "$ref": "#" }, | ||||
|                 { "$ref": "#/definitions/schemaArray" } | ||||
|             ], | ||||
|             "default": {} | ||||
|         }, | ||||
|         "maxItems": { "$ref": "#/definitions/nonNegativeInteger" }, | ||||
|         "minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, | ||||
|         "uniqueItems": { | ||||
|             "type": "boolean", | ||||
|             "default": false | ||||
|         }, | ||||
|         "contains": { "$ref": "#" }, | ||||
|         "maxProperties": { "$ref": "#/definitions/nonNegativeInteger" }, | ||||
|         "minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, | ||||
|         "required": { "$ref": "#/definitions/stringArray" }, | ||||
|         "additionalProperties": { "$ref": "#" }, | ||||
|         "definitions": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "properties": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "patternProperties": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "dependencies": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { | ||||
|                 "anyOf": [ | ||||
|                     { "$ref": "#" }, | ||||
|                     { "$ref": "#/definitions/stringArray" } | ||||
|                 ] | ||||
|             } | ||||
|         }, | ||||
|         "propertyNames": { "$ref": "#" }, | ||||
|         "const": {}, | ||||
|         "enum": { | ||||
|             "type": "array", | ||||
|             "minItems": 1, | ||||
|             "uniqueItems": true | ||||
|         }, | ||||
|         "type": { | ||||
|             "anyOf": [ | ||||
|                 { "$ref": "#/definitions/simpleTypes" }, | ||||
|                 { | ||||
|                     "type": "array", | ||||
|                     "items": { "$ref": "#/definitions/simpleTypes" }, | ||||
|                     "minItems": 1, | ||||
|                     "uniqueItems": true | ||||
|                 } | ||||
|             ] | ||||
|         }, | ||||
|         "format": { "type": "string" }, | ||||
|         "allOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "anyOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "oneOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "not": { "$ref": "#" } | ||||
|     }, | ||||
|     "default": {} | ||||
| } | ||||
							
								
								
									
										168
									
								
								node_modules/ajv/lib/refs/json-schema-draft-07.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										168
									
								
								node_modules/ajv/lib/refs/json-schema-draft-07.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,168 @@ | ||||
| { | ||||
|     "$schema": "http://json-schema.org/draft-07/schema#", | ||||
|     "$id": "http://json-schema.org/draft-07/schema#", | ||||
|     "title": "Core schema meta-schema", | ||||
|     "definitions": { | ||||
|         "schemaArray": { | ||||
|             "type": "array", | ||||
|             "minItems": 1, | ||||
|             "items": { "$ref": "#" } | ||||
|         }, | ||||
|         "nonNegativeInteger": { | ||||
|             "type": "integer", | ||||
|             "minimum": 0 | ||||
|         }, | ||||
|         "nonNegativeIntegerDefault0": { | ||||
|             "allOf": [ | ||||
|                 { "$ref": "#/definitions/nonNegativeInteger" }, | ||||
|                 { "default": 0 } | ||||
|             ] | ||||
|         }, | ||||
|         "simpleTypes": { | ||||
|             "enum": [ | ||||
|                 "array", | ||||
|                 "boolean", | ||||
|                 "integer", | ||||
|                 "null", | ||||
|                 "number", | ||||
|                 "object", | ||||
|                 "string" | ||||
|             ] | ||||
|         }, | ||||
|         "stringArray": { | ||||
|             "type": "array", | ||||
|             "items": { "type": "string" }, | ||||
|             "uniqueItems": true, | ||||
|             "default": [] | ||||
|         } | ||||
|     }, | ||||
|     "type": ["object", "boolean"], | ||||
|     "properties": { | ||||
|         "$id": { | ||||
|             "type": "string", | ||||
|             "format": "uri-reference" | ||||
|         }, | ||||
|         "$schema": { | ||||
|             "type": "string", | ||||
|             "format": "uri" | ||||
|         }, | ||||
|         "$ref": { | ||||
|             "type": "string", | ||||
|             "format": "uri-reference" | ||||
|         }, | ||||
|         "$comment": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "title": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "description": { | ||||
|             "type": "string" | ||||
|         }, | ||||
|         "default": true, | ||||
|         "readOnly": { | ||||
|             "type": "boolean", | ||||
|             "default": false | ||||
|         }, | ||||
|         "examples": { | ||||
|             "type": "array", | ||||
|             "items": true | ||||
|         }, | ||||
|         "multipleOf": { | ||||
|             "type": "number", | ||||
|             "exclusiveMinimum": 0 | ||||
|         }, | ||||
|         "maximum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "exclusiveMaximum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "minimum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "exclusiveMinimum": { | ||||
|             "type": "number" | ||||
|         }, | ||||
|         "maxLength": { "$ref": "#/definitions/nonNegativeInteger" }, | ||||
|         "minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, | ||||
|         "pattern": { | ||||
|             "type": "string", | ||||
|             "format": "regex" | ||||
|         }, | ||||
|         "additionalItems": { "$ref": "#" }, | ||||
|         "items": { | ||||
|             "anyOf": [ | ||||
|                 { "$ref": "#" }, | ||||
|                 { "$ref": "#/definitions/schemaArray" } | ||||
|             ], | ||||
|             "default": true | ||||
|         }, | ||||
|         "maxItems": { "$ref": "#/definitions/nonNegativeInteger" }, | ||||
|         "minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, | ||||
|         "uniqueItems": { | ||||
|             "type": "boolean", | ||||
|             "default": false | ||||
|         }, | ||||
|         "contains": { "$ref": "#" }, | ||||
|         "maxProperties": { "$ref": "#/definitions/nonNegativeInteger" }, | ||||
|         "minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" }, | ||||
|         "required": { "$ref": "#/definitions/stringArray" }, | ||||
|         "additionalProperties": { "$ref": "#" }, | ||||
|         "definitions": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "properties": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "patternProperties": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { "$ref": "#" }, | ||||
|             "propertyNames": { "format": "regex" }, | ||||
|             "default": {} | ||||
|         }, | ||||
|         "dependencies": { | ||||
|             "type": "object", | ||||
|             "additionalProperties": { | ||||
|                 "anyOf": [ | ||||
|                     { "$ref": "#" }, | ||||
|                     { "$ref": "#/definitions/stringArray" } | ||||
|                 ] | ||||
|             } | ||||
|         }, | ||||
|         "propertyNames": { "$ref": "#" }, | ||||
|         "const": true, | ||||
|         "enum": { | ||||
|             "type": "array", | ||||
|             "items": true, | ||||
|             "minItems": 1, | ||||
|             "uniqueItems": true | ||||
|         }, | ||||
|         "type": { | ||||
|             "anyOf": [ | ||||
|                 { "$ref": "#/definitions/simpleTypes" }, | ||||
|                 { | ||||
|                     "type": "array", | ||||
|                     "items": { "$ref": "#/definitions/simpleTypes" }, | ||||
|                     "minItems": 1, | ||||
|                     "uniqueItems": true | ||||
|                 } | ||||
|             ] | ||||
|         }, | ||||
|         "format": { "type": "string" }, | ||||
|         "contentMediaType": { "type": "string" }, | ||||
|         "contentEncoding": { "type": "string" }, | ||||
|         "if": {"$ref": "#"}, | ||||
|         "then": {"$ref": "#"}, | ||||
|         "else": {"$ref": "#"}, | ||||
|         "allOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "anyOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "oneOf": { "$ref": "#/definitions/schemaArray" }, | ||||
|         "not": { "$ref": "#" } | ||||
|     }, | ||||
|     "default": true | ||||
| } | ||||
							
								
								
									
										94
									
								
								node_modules/ajv/lib/refs/json-schema-secure.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										94
									
								
								node_modules/ajv/lib/refs/json-schema-secure.json
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,94 @@ | ||||
| { | ||||
|   "$schema": "http://json-schema.org/draft-07/schema#", | ||||
|   "$id": "https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/json-schema-secure.json#", | ||||
|   "title": "Meta-schema for the security assessment of JSON Schemas", | ||||
|   "description": "If a JSON Schema fails validation against this meta-schema, it may be unsafe to validate untrusted data", | ||||
|   "definitions": { | ||||
|     "schemaArray": { | ||||
|       "type": "array", | ||||
|       "minItems": 1, | ||||
|       "items": {"$ref": "#"} | ||||
|     } | ||||
|   }, | ||||
|   "dependencies": { | ||||
|     "patternProperties": { | ||||
|       "description": "prevent slow validation of large property names", | ||||
|       "required": ["propertyNames"], | ||||
|       "properties": { | ||||
|         "propertyNames": { | ||||
|           "required": ["maxLength"] | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|     "uniqueItems": { | ||||
|       "description": "prevent slow validation of large non-scalar arrays", | ||||
|       "if": { | ||||
|         "properties": { | ||||
|           "uniqueItems": {"const": true}, | ||||
|           "items": { | ||||
|             "properties": { | ||||
|               "type": { | ||||
|                 "anyOf": [ | ||||
|                   { | ||||
|                     "enum": ["object", "array"] | ||||
|                   }, | ||||
|                   { | ||||
|                     "type": "array", | ||||
|                     "contains": {"enum": ["object", "array"]} | ||||
|                   } | ||||
|                 ] | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|       }, | ||||
|       "then": { | ||||
|         "required": ["maxItems"] | ||||
|       } | ||||
|     }, | ||||
|     "pattern": { | ||||
|       "description": "prevent slow pattern matching of large strings", | ||||
|       "required": ["maxLength"] | ||||
|     }, | ||||
|     "format": { | ||||
|       "description": "prevent slow format validation of large strings", | ||||
|       "required": ["maxLength"] | ||||
|     } | ||||
|   }, | ||||
|   "properties": { | ||||
|     "additionalItems": {"$ref": "#"}, | ||||
|     "additionalProperties": {"$ref": "#"}, | ||||
|     "dependencies": { | ||||
|       "additionalProperties": { | ||||
|         "anyOf": [ | ||||
|           {"type": "array"}, | ||||
|           {"$ref": "#"} | ||||
|         ] | ||||
|       } | ||||
|     }, | ||||
|     "items": { | ||||
|       "anyOf": [ | ||||
|         {"$ref": "#"}, | ||||
|         {"$ref": "#/definitions/schemaArray"} | ||||
|       ] | ||||
|     }, | ||||
|     "definitions": { | ||||
|       "additionalProperties": {"$ref": "#"} | ||||
|     }, | ||||
|     "patternProperties": { | ||||
|       "additionalProperties": {"$ref": "#"} | ||||
|     }, | ||||
|     "properties": { | ||||
|       "additionalProperties": {"$ref": "#"} | ||||
|     }, | ||||
|     "if": {"$ref": "#"}, | ||||
|     "then": {"$ref": "#"}, | ||||
|     "else": {"$ref": "#"}, | ||||
|     "allOf": {"$ref": "#/definitions/schemaArray"}, | ||||
|     "anyOf": {"$ref": "#/definitions/schemaArray"}, | ||||
|     "oneOf": {"$ref": "#/definitions/schemaArray"}, | ||||
|     "not": {"$ref": "#"}, | ||||
|     "contains": {"$ref": "#"}, | ||||
|     "propertyNames": {"$ref": "#"} | ||||
|   } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user