diff --git a/docs/3.x.x/en/guides/models.md b/docs/3.x.x/en/guides/models.md index a5b56d8605..66a294532f 100644 --- a/docs/3.x.x/en/guides/models.md +++ b/docs/3.x.x/en/guides/models.md @@ -21,6 +21,7 @@ The following types are currently available: - `biginteger` - `float` - `decimal` + - `password` - `date` - `time` - `datetime` @@ -48,6 +49,9 @@ The following types are currently available: "lastname": { "type": "string" }, + "password": { + "type": "password" + }, "about": { "type": "description" }, @@ -392,7 +396,7 @@ Additional settings can be set on models: "collectionName": "Users_v1", "globalId": "Users", "attributes": { - + } } ```