mirror of
https://github.com/strapi/strapi.git
synced 2025-12-29 16:16:20 +00:00
34 lines
536 B
JSON
34 lines
536 B
JSON
{
|
|
"connection": "default",
|
|
"collectionName": "",
|
|
"info": {
|
|
"name": "user",
|
|
"description": ""
|
|
},
|
|
"attributes": {
|
|
"username": {
|
|
"type": "string",
|
|
"minLength": 3,
|
|
"unique": true
|
|
},
|
|
"email": {
|
|
"type": "string",
|
|
"minLength": 6,
|
|
"unique": true
|
|
},
|
|
"provider": {
|
|
"type": "string"
|
|
},
|
|
"password": {
|
|
"type": "string",
|
|
"minLength": 6
|
|
},
|
|
"resetPasswordToken": {
|
|
"type": "string"
|
|
},
|
|
"role": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|