mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
18 lines
310 B
JSON
18 lines
310 B
JSON
{
|
|
"type": "object",
|
|
"description": "TokenObject",
|
|
"additionalProperties": false,
|
|
"required": ["expires", "token"],
|
|
"properties": {
|
|
"expires": {
|
|
"type": "number",
|
|
"description": "Token Expiry Unix Time",
|
|
"minimum": 1
|
|
},
|
|
"token": {
|
|
"type": "string",
|
|
"description": "JWT Token"
|
|
}
|
|
}
|
|
}
|