

{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"FTUE",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. FTUE object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["FTUE"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["FTUE"]
		},
		"action":{
			"type": "string",
			"description": "Log DISPLAY when the screen is displayed;Log DONE or SEE_MY_INVITE when the corresponding option is clicked;Log SIGNUP when the button is clicked on the value prop screen"
		},
		"display_screen":{
			"type":"string",
			"description":"Log WELCOME when the value prop screen is displayed; Log VERIFICATION_COMPLETE when ALL DONE, LETS GET STARTED screen is displayed"
		}
	},
	"required":[
	 	"log_context",
	        "event_name",
        	"schema_definition",	
		"action",
		"display_screen"
	]
}