{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "RenameLabelRequest",
	"type": "object",
	"description": "API Path: /dpalgo/v2/renameLabel, the Rename Label object ",
	"properties": {
		"user_id": {
			"type": "string",
			"description": "User ID of user. Same as reg_vid in log_context"
		},
		"destination_id": {
			"type": "string",
			"description": "Destination ID of request. Always same for a predicted destination"
		},
		"label": {
			"type": "string",
			"description": "Custom Label given by the user for the Predicted destinatoin"
		}
	},
	"required": [
		"user_id",
		"destination_id",
		"label"
	]
}