{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"AppFeedback",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. App Feedback object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["APP_FEEDBACK"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["AppFeedback"]
		},
		"action":{
			"$ref":"/resources/schema/analytics/client/v2/ReportActionType.json",
			"description":"Required .. Log Click if user clicks on Feedback in profile settings.Log Select if any option was selected Log Submit or Back depending on what user clicks on"
		},
		"description":{
			"$ref":"/resources/schema/analytics/client/v2/AppFeedbackType.json",
			"description":"The feedback option that was chosen."
		},
		"notes":{
			"type":"string",
			"description":"Additional information typed in by user if any."
		},
		"followup":{
			"type":"string",
			"description":"Whether the follow up option is on or off."
		},
		"status":{
			"$ref":"/resources/schema/analytics/client/v2/StatusType.json",
			"description":"If Action was Submit, then whether successful or not."
		}
		
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"action"
	]
}