{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "CurrentLocation",
	"type": "object",
	"properties": {
		"city": {
			"type": "string",
			"description": "Name of City"
		},
		"state": {
			"type": "string",
			"description" : "Name of State"			
		},
		"country": {
			"$ref": "/resources/schema/common/v1/Country.json",
			"description": "Country in which the car is currently present"
		}
	},
	"required": [
		"country"
	]
}