{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"AppActivated",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v3 .. App Activated object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v3/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["APP_ACTIVATED"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["AppActivated"]
		},
		"trigger":{
			"$ref":"/resources/schema/analytics/client/v3/AppActivatedTriggerType.json",
			"description":"Required Entry point from which the app was launched. If a user launced the app from a Facebook link, the trigger would be FB"
		},
		"caused_by":{
			"type":"string",
			"description":"A short description of the action that caused the app to be activated"
		},
		"display_screen":{
			"$ref":"/resources/schema/analytics/client/v3/LaunchDisplayType.json",
			"description":"Required .. The screen displayed on app activation. This would be different depending on whether the user launched the app from a shortcut, background or meetup link"
		},
		"first_time": {
			"type":"string",
			"enum": ["YES", "NO", "NONE"],
			"description": "Marks the first time this combination of values for the properties event_label, event_environment and page_title is fired for a user"
		},
		"event_environment":{
			"$ref":"/resources/schema/analytics/client/v3/EventEnvironmentValues.json",
			"description":"To identify if event happened on the mobile app or when connected to Car Play or if the app is on a memory stick or directly on a head unit."
		}
	},
	"required":[
		"log_context",
		"event_name",
		"schema_definition",
		"trigger",
		"caused_by",
		"display_screen"
	]
}