{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "BlacklistDestinationRequest",
	"type": "object",
	"description": "API Path: /dpalgo/v3/annotatePrediction/setBlacklist, the Blacklist Destination Request 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"
		},
		"blacklist_type": {
			"$ref": "/resources/schema/dpalgo/v3/BlacklistType.json",
			"description": "Temporary or Permanent Blacklist"
		},
		"start_engine_id": {
			"type": "string",
			"description": "Start Engine ID for the Current Session. Required in case of Temporary Blacklisting."
		}
	},
	"required": [
		"user_id",
		"destination_id",
		"blacklist_type"
	]
}