Responsible: Kurt Junghanns
objectid = { | |
type: 'string', | |
maxLength: 24, | |
minLength: 24 | |
}; |
user =
property | type | required | format checking | state of implementation (master branch) in terms of attribute added and connected with the frontend | |
---|---|---|---|---|---|
_id | integer, autoincrement | yes | isInteger |
| |
string | yes | isEmail, unique |
| ||
username | string | yes | unique |
| |
password | string (contains SHA512) | yes | alphanumerical |
| |
defaultsobjectId | [ object ] | no | is integer, preference object exists with such idnormally just an object with one key |
| |
registered | date | yes | date |
| |
surname | string | yes | implemented | ||
forename | string | yes | implemented | ||
gender | 'male', 'female', null | no | null value should be possible | not implemented | |
locale | string | no | need to decide on the format | implemented | |
hometown | string | no | implemented | ||
location | string | no | implemented | ||
languages | array of languages | no | language (see below) |
| |
picture | string | no | not implemented | ||
interests | array of stringsstring | no | not implemented | ||
description | string | no | not implemented | ||
birthday | date | no | date | not implemented | |
infodeck | objectId | no | isInteger, deck exists with such id | not implemented |
Not yet implemented: preferences =
...