{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"title":"ServerLogContext",
	"type":"object",
	"additionalProperties":false,
	"description":"Analytics-v2 .. basic Server Log Context object",
	"properties":{
		"utc_timestamp":{
			"type":"integer",
			"description":"Required UTC timestamp in milliseconds for event/click"
		},
		"log_id":{
			"type":"string",
			"description":"Required UUID of the log record"
		},
		"reg_vid":{
			"type":"string",
			"description":"Registered Visitor ID - Currently known as internal UserID"
		},
		"carrier":{
			"type":"string",
			"description":"Hame of the carrier e.g. ATT/Verizon, if available"
		},
		"account_type":{
			"$ref":"/resources/schema/analytics/client/v2/AccountType.json",
			"description":"Type of the account, whether free or paid"
		},
		"billing_id":{
			"type":"string",
			"description":"ID to tie a user to the Billing system. With this ID Finance should be able to link events back to PTN"
		},
		"log_version":{
			"$ref":"/resources/schema/analytics/client/v2/LogVersionType.json",
			"description":"Required version of the logging specs.  This one is V2"
		}
		
	},
	"required":[
		"utc_timestamp",
		"log_id",
		"reg_vid",
		"carrier",
		"billing_id",
		"log_version"
	]
	
}