{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "LabelledDestination",
	"description": "Labelled Destination for a user",
	"type": "object",
	"properties": {
		"destination_id": {
			"type": "string",
			"description": "Destination ID to support label renaming. Always same for a destination"
		},		
		"label": {
			"type": "string",
			"description": "Label assigned to that destination"
		}
	},
	"required": [
		"destination_id",
		"label"
	]
}