{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"additionalProperties":false,
	"description":"Version v7",
	"properties":{
		"question":{
			"type":"string"
		},
		"answer_list":{
			"items":{
				"type":"string"
			},
			"type":"array"
		},
		"comments":{
			"type":"string"
		},
		"attachments":{
			"items":{
				"$ref":"/resources/schema/user/v7/UserFeedbackAttachment.json"
			},
			"type":"array"
		},
		"additional_info":{
			"type":"string"
		}
	},
	"required":[
		"question",
		"answer_list"
	],
	"title":"UserFeedbackQuestion",
	"type":"object"
}