Return a new hash with all keys converted to strings.
Convert all keys in the hash to strings.
@example
test = {:abc => 'def'} test.stringify_keys! test # => {'abc' => 'def'}
Stringify all keys recursively within nested hashes and arrays.
[Validate]