{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "VehicleInfo",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v1 - Vehicle Info, may be used for Filtering/Throttling ",	
	"properties" : {
		"vehicle_id" : {
			"type" : "string",
			"description" : "Unique Identifier of a vehicle. This is optional parameter. ",
			"minLength" : 1
		},

		"platform_version" : {
			"type" : "string",
			"description" : "Version Id of the platform that telenav application is running on.",
			"minLength" : 1			
		},
		
		"app_version" : {
			"type" : "string",
			"description" : "Version Id of the telenav application running on head unit.",
			"minLength" : 1			
		},
		
		"truedelta_access_token" : {
			"type" : "string",
			"description" : "AccessToken associated with this vehicle of the telenav application running on head unit.",
			"minLength" : 1			
		}
	},

	"required" : 
	[
		"platform_version",
		"app_version"
	]
}