Created
October 29, 2016 15:57
-
-
Save pcarolan/0fdecad8bb500c5feeaecc1861a40e2c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "An Address following the convention of http://microformats.org/wiki/hcard", | |
"type": "object", | |
"properties": { | |
"post-office-box": { "type": "string" }, | |
"extended-address": { "type": "string" }, | |
"street-address": { "type": "string" }, | |
"locality":{ "type": "string" }, | |
"region": { "type": "string" }, | |
"postal-code": { "type": "string" }, | |
"country-name": { "type": "string"} | |
}, | |
"required": ["locality", "region", "country-name"], | |
"dependencies": { | |
"post-office-box": ["street-address"], | |
"extended-address": ["street-address"] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "A representation of an event", | |
"type": "object", | |
"required": [ "dtstart", "summary" ], | |
"properties": { | |
"dtstart": { | |
"format": "date-time", | |
"type": "string", | |
"description": "Event starting time" | |
}, | |
"dtend": { | |
"format": "date-time", | |
"type": "string", | |
"description": "Event ending time" | |
}, | |
"summary": { "type": "string" }, | |
"location": { "type": "string" }, | |
"url": { "type": "string", "format": "uri" }, | |
"duration": { | |
"format": "time", | |
"type": "string", | |
"description": "Event duration" | |
}, | |
"rdate": { | |
"format": "date-time", | |
"type": "string", | |
"description": "Recurrence date" | |
}, | |
"rrule": { | |
"type": "string", | |
"description": "Recurrence rule" | |
}, | |
"category": { "type": "string" }, | |
"description": { "type": "string" }, | |
"geo": { "$ref": "http: //json-schema.org/geo" } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "A representation of a person, company, organization, or place", | |
"type": "object", | |
"required": ["familyName", "givenName"], | |
"properties": { | |
"fn": { | |
"description": "Formatted Name", | |
"type": "string" | |
}, | |
"familyName": { "type": "string" }, | |
"givenName": { "type": "string" }, | |
"additionalName": { "type": "array", "items": { "type": "string" } }, | |
"honorificPrefix": { "type": "array", "items": { "type": "string" } }, | |
"honorificSuffix": { "type": "array", "items": { "type": "string" } }, | |
"nickname": { "type": "string" }, | |
"url": { "type": "string", "format": "uri" }, | |
"email": { | |
"type": "object", | |
"properties": { | |
"type": { "type": "string" }, | |
"value": { "type": "string", "format": "email" } | |
} | |
}, | |
"tel": { | |
"type": "object", | |
"properties": { | |
"type": { "type": "string" }, | |
"value": { "type": "string", "format": "phone" } | |
} | |
}, | |
"adr": { "$ref": "http://json-schema.org/address" }, | |
"geo": { "$ref": "http://json-schema.org/geo" }, | |
"tz": { "type": "string" }, | |
"photo": { "type": "string" }, | |
"logo": { "type": "string" }, | |
"sound": { "type": "string" }, | |
"bday": { "type": "string", "format": "date" }, | |
"title": { "type": "string" }, | |
"role": { "type": "string" }, | |
"org": { | |
"type": "object", | |
"properties": { | |
"organizationName": { "type": "string" }, | |
"organizationUnit": { "type": "string" } | |
} | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"description": "A geographical coordinate", | |
"type": "object", | |
"properties": { | |
"latitude": { "type": "number" }, | |
"longitude": { "type": "number" } | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/hyper-schema#", | |
"id": "http://json-schema.org/draft-04/hyper-schema#", | |
"title": "JSON Hyper-Schema", | |
"allOf": [ | |
{ | |
"$ref": "http://json-schema.org/draft-04/schema#" | |
} | |
], | |
"properties": { | |
"additionalItems": { | |
"anyOf": [ | |
{ | |
"type": "boolean" | |
}, | |
{ | |
"$ref": "#" | |
} | |
] | |
}, | |
"additionalProperties": { | |
"anyOf": [ | |
{ | |
"type": "boolean" | |
}, | |
{ | |
"$ref": "#" | |
} | |
] | |
}, | |
"dependencies": { | |
"additionalProperties": { | |
"anyOf": [ | |
{ | |
"$ref": "#" | |
}, | |
{ | |
"type": "array" | |
} | |
] | |
} | |
}, | |
"items": { | |
"anyOf": [ | |
{ | |
"$ref": "#" | |
}, | |
{ | |
"$ref": "#/definitions/schemaArray" | |
} | |
] | |
}, | |
"definitions": { | |
"additionalProperties": { | |
"$ref": "#" | |
} | |
}, | |
"patternProperties": { | |
"additionalProperties": { | |
"$ref": "#" | |
} | |
}, | |
"properties": { | |
"additionalProperties": { | |
"$ref": "#" | |
} | |
}, | |
"allOf": { | |
"$ref": "#/definitions/schemaArray" | |
}, | |
"anyOf": { | |
"$ref": "#/definitions/schemaArray" | |
}, | |
"oneOf": { | |
"$ref": "#/definitions/schemaArray" | |
}, | |
"not": { | |
"$ref": "#" | |
}, | |
"links": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/linkDescription" | |
} | |
}, | |
"fragmentResolution": { | |
"type": "string" | |
}, | |
"media": { | |
"type": "object", | |
"properties": { | |
"type": { | |
"description": "A media type, as described in RFC 2046", | |
"type": "string" | |
}, | |
"binaryEncoding": { | |
"description": "A content encoding scheme, as described in RFC 2045", | |
"type": "string" | |
} | |
} | |
}, | |
"pathStart": { | |
"description": "Instances' URIs must start with this value for this schema to apply to them", | |
"type": "string", | |
"format": "uri" | |
} | |
}, | |
"definitions": { | |
"schemaArray": { | |
"type": "array", | |
"items": { | |
"$ref": "#" | |
} | |
}, | |
"linkDescription": { | |
"title": "Link Description Object", | |
"type": "object", | |
"required": [ "href", "rel" ], | |
"properties": { | |
"href": { | |
"description": "a URI template, as defined by RFC 6570, with the addition of the $, ( and ) characters for pre-processing", | |
"type": "string" | |
}, | |
"rel": { | |
"description": "relation to the target resource of the link", | |
"type": "string" | |
}, | |
"title": { | |
"description": "a title for the link", | |
"type": "string" | |
}, | |
"targetSchema": { | |
"description": "JSON Schema describing the link target", | |
"$ref": "#" | |
}, | |
"mediaType": { | |
"description": "media type (as defined by RFC 2046) describing the link target", | |
"type": "string" | |
}, | |
"method": { | |
"description": "method for requesting the target of the link (e.g. for HTTP this might be \"GET\" or \"DELETE\")", | |
"type": "string" | |
}, | |
"encType": { | |
"description": "The media type in which to submit data along with the request", | |
"type": "string", | |
"default": "application/json" | |
}, | |
"schema": { | |
"description": "Schema describing the data to submit along with the request", | |
"$ref": "#" | |
} | |
} | |
} | |
}, | |
"links": [ | |
{ | |
"rel": "self", | |
"href": "{+id}" | |
}, | |
{ | |
"rel": "full", | |
"href": "{+($ref)}" | |
} | |
] | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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", | |
"format": "uri" | |
}, | |
"$schema": { | |
"type": "string", | |
"format": "uri" | |
}, | |
"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 | |
} | |
] | |
}, | |
"allOf": { "$ref": "#/definitions/schemaArray" }, | |
"anyOf": { "$ref": "#/definitions/schemaArray" }, | |
"oneOf": { "$ref": "#/definitions/schemaArray" }, | |
"not": { "$ref": "#" } | |
}, | |
"dependencies": { | |
"exclusiveMaximum": [ "maximum" ], | |
"exclusiveMinimum": [ "minimum" ] | |
}, | |
"default": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment