Thanks for the clarifying comment. So here's how you would do this:
publish kyc '["userhashdata","PH","bank"]' '{"json":{"status":"kyc1"}}'
This example puts the status inside a JSON structure which is easily extensible in future. If you prefer you can also just embed it as raw hexadecimal:
publish kyc '["userhashdata","PH","bank"]' 6b796331
If you're concerned about namespace clashes between the keys, because there might be a bank and country with the same name, you can also use prefixes for the keys, e.g.:
publish kyc '["h_userhashdata","c_PH","t_bank"]' '{"json":{"status":"kyc1"}}'