{
	"$schema":"http://json-schema.org/draft-04/schema#",
	"additionalProperties":false,
	"description":"Version v1",
	"properties":{
		"city":{
			"type":"string"
		},
		"country":{
			"$ref":"/resources/schema/common/v1/Country.json"
		},
		"county":{
			"type":"string"
		},
		"cross_street":{
			"$ref":"/resources/schema/common/v1/Street.json"
		},
		"formatted_address":{
			"type":"string"
		},
		"house_number":{
			"type":"string"
		},
		"locality":{
			"type":"string"
		},
		"postal_code":{
			"type":"string"
		},
		"state":{
			"type":"string"
		},
		"street":{
			"$ref":"/resources/schema/common/v1/Street.json"
		},
		"sub_locality":{
			"type":"string"
		},
		"sub_street":{
			"type":"string"
		},
		"suite":{
			"type":"string"
		}
	},
	"title":"Address",
	"type":"object"
}