{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "TrialStart",
	"type": "object",
	"additionalProperties": false,
	"description": "Analytics-v3 .. trial start",
	"properties": {
		"log_context": {
			"$ref": "/resources/schema/analytics/client/v3/LogContext.json",
			"description": "Required Log Context Reference"
		},
		"event_name": {
			"type": "string",
			"enum": ["TRIAL_START"]
		},
		"schema_definition": {
			"type": "string",
			"enum": ["TrialStart"]
		},
		"trial_start_date": {
			"type": "string",
			"description": "Date when the trial starts, exp: 2017-12-24T00:02:19.834Z"
		},
		"status": {
			"type": "string",
			"description": "Status of trial date. Log UNAVAILABLE - if trial start date is not available, AVAILABLE - if available"
		}

	},
	"required": [
		"log_context",
		"event_name",
		"schema_definition",
		"trial_start_date"
	]
}