{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"AppActivated",
	"type":"object",
	"additionalProperties":false,
	"description":"TAnalytics-v1",
	"properties":{
		"Trigger":{
			"enum":[
				"SHORTCUT",
				"FB",
				"GPLUS",
				"WIDGET",
				"SMS",
				"EMAIL"
			],
			"description":"Required trigger that activated the app"
		},
		"LaunchType":{
			"enum":[
				"FTUE",
				"SUBSEQUENT",
				"FOREGROUND"
			],
			"description":"Optional launch type"
		},
		"DisplayScreen":{
			"enum":[
				"DASHBOARD",
				"MEETUP",
				"CHAT"
			],
			"description":"Required Name of the screen that displayed after app activation"
		}
		
	},
	"required":[
		"Trigger",
		"LaunchType"
	]
}