{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "EntityDetails",
	"description": "Entity Details for the Predicted Destination",
	"type": "object",
	"properties": {
		"label": {
			"type": "string",
			"description": "Label in Entity service for this destination"
		},
		"entity_type": {
			"$ref": "/resources/schema/dpalgo/v2/EntityTypeValues.json",
			"description": "Entity Type for this Predicted Destination"
		},
		"entity_value": {
			"type": "string",
			"description": "Entity ID or URL associated with the Entity"
		}
	},
	"required": [
		"label",
		"entity_type",
		"entity_value"
	]
}