

{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"MeetUpTheme",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. MeetUpTheme object",
	"properties":{
		"log_context":{
			"$ref":"/resources/schema/analytics/client/v2/LogContext.json",
			"description":"Required Log Context Reference"
		},
		"event_name":{
			"type": "string",
			"enum": ["MEETUP_THEME"]		
		},
		"schema_definition":{
			"type": "string",
			"enum": ["MeetUpTheme"]
		},
		"action":{
			"type": "string",
			"description": "Log SCROLL when a user swipes across the stickers on meet up"
		},
		"trigger":{
			"type":"string",
			"description":"Log MEETUP_SUMMARY when an existing meetup is being edited;Log MEETUP_CREATE when a new meet up is being setup"
		},
		"user_type":{
			"type":"string",
			"description":"Log ORGANIZER when a new meet up is being created; or is being edited by the person who set up the meetup;Log PARTICIPANT when an existing meet up is being editec by a member other than ORGANIZER"
		},
		"group_id":{
			"type":"string",
			"description":"Unique group Id"
		},
		"meetup_id":{
			"type":"string",
			"description":"Unique meetup Id"
		},
		"meetup_theme":{
			"type":"string",
			"description":"meet up title / theme"
		}
	},
	"required":[
	 	"log_context",
	        "event_name",
        	"schema_definition",	
		"action",
		"trigger",
		"user_type",
		"meetup_theme"
	]
}