{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"title": "ChangeDestinationDetailsRequest",
	"type": "object",
	"description": "API Path: /dpalgo/v3/annotatePrediction/changeDetails, the Change Destination Details 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 the Address"
		},
		"original_destination_detail": {
			"$ref": "/resources/schema/dpalgo/v3/DestinationDetail.json",
			"description": "Original Label, Lat , Lon, of Destination"
		},
		"annotated_destination_detail": {
			"$ref": "/resources/schema/dpalgo/v3/DestinationDetail.json",
			"description": "Annotated Label, Lat , Lon, of Destination"
		}
	},
	"required": [
		"user_id",
		"destination_id",
		"original_destination_detail",
		"annotated_destination_detail"
	]
}