{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "FeedbackReason",
	"type": "object",
	"description": "Feedback Reason Object",
	"properties": {
		"id": {
			"type": "string",
			"description": "Id of the reason"
		},
		"heading": {
			"type": "string",
			"description": "Heading of the reason"
		},
		"detail": {
			"type": "string",
			"description": "Detail of the  of reason"
		},
		"rank": {
			"type": "integer",
			"description": "Used for Ordering the Reasons"
		}		
	},
	"required": [
		"id",
		"heading",
		"detail",
		"rank"
	]
}