{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "title": "HomeArea",
    "type": "object",
    "additionalProperties": false,
    "description": "Version v1, Home Area",
    "properties": {
    	"space_ids": {
    		"type": "array",
			"items": {
				"type": "string"
			},			
			"description": "List of space IDs for this home area"    		
    	},
    	"method":{
    		"type": "string",
    		"enum":["MethodA", "MethodB", "MethodC", "LOCAL_MOCK"],
    		"description": "Method used to calculate Home Area." 
    	},
    	"bounding_box":{
    		"$ref":"/resources/schema/analytics/client/v2/BoundingBox.json",
			"description":"bonunding box of Home Area."
    	}
    	
    },
    "required": [
        "space_ids",
        "method",
        "bounding_box"
    ]
}