{
	"$schema": "http://json-schema.org/draft-03/schema#",
	"title": "Orders schema",
	"description": "A schema for retrieving available endpoints of the orders.",
	"type": "object",
	"restdocs": "http://restdocs.e-conomic.com/#get-orders",
	"properties": {
		"drafts": {
			"type": "string",
			"format": "uri",
			"description": "A reference to all draft orders."
		},
		"sent": {
			"type": "string",
			"format": "uri",
			"description": "A reference to all sent orders."
		},
		"archived": {
			"type": "string",
			"format": "uri",
			"description": "A reference to all archived orders."
		},
		"self": {
			"type": "string",
			"format": "uri",
			"description": "A reference to the orders resource.",
			"required": true
		}
	}
}