Handling password field

Hi,

I have a password field in my schema. Is there any way to display ***** instead of showing its value ?.
I have a schema element like below

    "password": {
      "title": "DB Password encrypted",
      "description": "DB password encrypted",
      "type": "string",
      "writeOnly": true,
      "format": "password"
    },

Thanks,
Vijay

Adding option below solved the issue.

   "options": {
                    "format": "password"
                  }
1 Like