| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | 
							- {
 
- 	"$schema" : "http://json-schema.org/draft-01/hyper-schema#",
 
- 	"id" : "http://json-schema.org/draft-01/schema#",
 
- 	"type" : "object",
 
- 	
 
- 	"properties" : {
 
- 		"type" : {
 
- 			"type" : ["string", "array"],
 
- 			"items" : {
 
- 				"type" : ["string", {"$ref" : "#"}]
 
- 			},
 
- 			"optional" : true,
 
- 			"default" : "any"
 
- 		},
 
- 		
 
- 		"properties" : {
 
- 			"type" : "object",
 
- 			"additionalProperties" : {"$ref" : "#"},
 
- 			"optional" : true,
 
- 			"default" : {}
 
- 		},
 
- 		
 
- 		"items" : {
 
- 			"type" : [{"$ref" : "#"}, "array"],
 
- 			"items" : {"$ref" : "#"},
 
- 			"optional" : true,
 
- 			"default" : {}
 
- 		},
 
- 		
 
- 		"optional" : {
 
- 			"type" : "boolean",
 
- 			"optional" : true,
 
- 			"default" : false
 
- 		},
 
- 		
 
- 		"additionalProperties" : {
 
- 			"type" : [{"$ref" : "#"}, "boolean"],
 
- 			"optional" : true,
 
- 			"default" : {}
 
- 		},
 
- 		
 
- 		"requires" : {
 
- 			"type" : ["string", {"$ref" : "#"}],
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"minimum" : {
 
- 			"type" : "number",
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"maximum" : {
 
- 			"type" : "number",
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"minimumCanEqual" : {
 
- 			"type" : "boolean",
 
- 			"optional" : true,
 
- 			"requires" : "minimum",
 
- 			"default" : true
 
- 		},
 
- 		
 
- 		"maximumCanEqual" : {
 
- 			"type" : "boolean",
 
- 			"optional" : true,
 
- 			"requires" : "maximum",
 
- 			"default" : true
 
- 		},
 
- 		
 
- 		"minItems" : {
 
- 			"type" : "integer",
 
- 			"optional" : true,
 
- 			"minimum" : 0,
 
- 			"default" : 0
 
- 		},
 
- 		
 
- 		"maxItems" : {
 
- 			"type" : "integer",
 
- 			"optional" : true,
 
- 			"minimum" : 0
 
- 		},
 
- 		
 
- 		"pattern" : {
 
- 			"type" : "string",
 
- 			"optional" : true,
 
- 			"format" : "regex"
 
- 		},
 
- 		
 
- 		"minLength" : {
 
- 			"type" : "integer",
 
- 			"optional" : true,
 
- 			"minimum" : 0,
 
- 			"default" : 0
 
- 		},
 
- 		
 
- 		"maxLength" : {
 
- 			"type" : "integer",
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"enum" : {
 
- 			"type" : "array",
 
- 			"optional" : true,
 
- 			"minItems" : 1
 
- 		},
 
- 		
 
- 		"title" : {
 
- 			"type" : "string",
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"description" : {
 
- 			"type" : "string",
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"format" : {
 
- 			"type" : "string",
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"contentEncoding" : {
 
- 			"type" : "string",
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"default" : {
 
- 			"type" : "any",
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"maxDecimal" : {
 
- 			"type" : "integer",
 
- 			"optional" : true,
 
- 			"minimum" : 0
 
- 		},
 
- 		
 
- 		"disallow" : {
 
- 			"type" : ["string", "array"],
 
- 			"items" : {"type" : "string"},
 
- 			"optional" : true
 
- 		},
 
- 		
 
- 		"extends" : {
 
- 			"type" : [{"$ref" : "#"}, "array"],
 
- 			"items" : {"$ref" : "#"},
 
- 			"optional" : true,
 
- 			"default" : {}
 
- 		}
 
- 	},
 
- 	
 
- 	"optional" : true,
 
- 	"default" : {}
 
- }
 
 
  |