The hash type is a string used to store securely hashed values, such as passwords. NoonJS uses bcrypt for hashing.
{
"schema": {
"username": {
"type": "string"
},
"password": {
"type": "hash"
}
}
}