mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 05:18:12 -05:00
62 lines
1.3 KiB
JSON
62 lines
1.3 KiB
JSON
|
{
|
||
|
"type": "object",
|
||
|
"description": "User object",
|
||
|
"required": ["id", "created_on", "modified_on", "is_disabled", "email", "name", "nickname", "avatar", "roles"],
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "integer",
|
||
|
"description": "User ID",
|
||
|
"minimum": 1,
|
||
|
"example": 1
|
||
|
},
|
||
|
"created_on": {
|
||
|
"type": "string",
|
||
|
"description": "Created Date",
|
||
|
"example": "2020-01-30T09:36:08.000Z"
|
||
|
},
|
||
|
"modified_on": {
|
||
|
"type": "string",
|
||
|
"description": "Modified Date",
|
||
|
"example": "2020-01-30T09:41:04.000Z"
|
||
|
},
|
||
|
"is_disabled": {
|
||
|
"type": "integer",
|
||
|
"minimum": 0,
|
||
|
"maximum": 1,
|
||
|
"description": "Is user Disabled (0 = false, 1 = true)",
|
||
|
"example": 0
|
||
|
},
|
||
|
"email": {
|
||
|
"type": "string",
|
||
|
"description": "Email",
|
||
|
"minLength": 3,
|
||
|
"example": "jc@jc21.com"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string",
|
||
|
"description": "Name",
|
||
|
"minLength": 1,
|
||
|
"example": "Jamie Curnow"
|
||
|
},
|
||
|
"nickname": {
|
||
|
"type": "string",
|
||
|
"description": "Nickname",
|
||
|
"example": "James"
|
||
|
},
|
||
|
"avatar": {
|
||
|
"type": "string",
|
||
|
"description": "Gravatar URL based on email, without scheme",
|
||
|
"example": "//www.gravatar.com/avatar/6193176330f8d38747f038c170ddb193?default=mm"
|
||
|
},
|
||
|
"roles": {
|
||
|
"description": "Roles applied",
|
||
|
"example": ["admin"],
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|