mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
29 lines
476 B
JSON
29 lines
476 B
JSON
{
|
|
"type": "object",
|
|
"description": "UserAuthObject",
|
|
"additionalProperties": false,
|
|
"required": ["id", "user_id", "type", "created_on", "modified_on"],
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"user_id": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"pattern": "^password$"
|
|
},
|
|
"created_on": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"modified_on": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
}
|
|
}
|
|
}
|