Basic User Schema for Strapi v4.25.xx
basic User schema fields for strapi
This is right after bootstrapping the project
Strapi 4.25.16
Dec 9 2024
Name | Type | |
---|---|---|
username | Text | |
email | ||
provider | Text | |
password | Password | |
resetPasswordToken | Text | |
confirmationToken | Text | |
confirmed | Boolean | |
blocked | Boolean | |
role | Relation with Role (from: users-permissions) |
"displayName": {
ReplyDelete"type": "string",
"description": "From this field, all are custom fields"
},
"profileUrl": {
"type": "text"
},
"deleted": {
"type": "boolean",
"default": false
},
"tokenVersion": {
"type": "integer",
"default": 0,
"private": true
},
"adminr": {
"type": "enumeration",
"enum": ["super1", "editor1"]
},
"bio": {
"type": "text"
}