you can decode your json into php array.
for example if here is your validation code
$validation->add('name', new PresenceOf(array(
'message' => 'The name is required'
)));
then your array must be formatted like this
[
"email" => "[email protected]"]
]