{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "FTUEDisplay",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v3 .. FTUE object",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v3/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["FTUE_DISPLAY"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["FTUEDisplay"]
		},
		"action": {
			"$ref": "/resources/schema/analytics/client/v3/FTUEDisplayAction.json",
			"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": {
			"$ref": "/resources/schema/analytics/client/v3/FTUEDisplayScreen.json",
			"description": "Log WELCOME when the value prop screen is displayed; Log VERIFICATION_COMPLETE when ALL DONE, LETS GET STARTED screen is displayed"
		},
		"interaction_method": {
			"$ref": "/resources/schema/analytics/client/v3/InteractionMethodValues.json",
			"description": "for each user interaction log the interation method"
		}
	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"action",
		"display_screen"
	]
}