{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "Address",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "EntityUserInsight .. Address Object.",
	"properties" : {	
    	"house_number": {
			"type": "string"
        },
        
		"street": {
            "type": "string"
		},
		
		"locality": {
			"type": "string"
		},
		
		"city": {
			"type": "string"
		},
		
		"county": {
			"type": "string"
		},
		
		"state": {
			"type": "string"
		},
		
		"country": {
			"type": "string"
		},
		
		"postal_code": {
			"type": "string"
		}
	}
}