{
	"$schema": "http://json-schema.org/draft-03/schema#",
	"title": "Department GET schema",
	"description": "A schema for retrieval of a single department.",
	"type": "object",
	"restdocs": "https://restdocs.e-conomic.com/#get-departments-departmentnumber",
	"properties": {
		"departmentNumber": {
			"type": "integer",
			"description": "A unique identifier of the department."
		},
		"name": {
			"type": "string",
			"maxLength": 250,
			"description": "The name of the department."
		},
		"barred": {
			"type": "boolean",
			"description": "Indicates if the department is barred from usage. Default is null which also means false."
		},
		"self": {
			"type": "string",
			"format": "uri",
			"description": "A unique link reference to the department item.",
			"required": true
		}
	}
}
