mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
52 lines
835 B
JSON
52 lines
835 B
JSON
{
|
|
"type": "object",
|
|
"description": "SettingObject",
|
|
"additionalProperties": false,
|
|
"required": ["id", "created_at", "updated_at", "name", "value"],
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer",
|
|
"minimum": 1
|
|
},
|
|
"created_at": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"description": "Created Unix time with milliseconds"
|
|
},
|
|
"updated_at": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"description": "Updated Unix time with milliseconds"
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"minLength": 2,
|
|
"maxLength": 100
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"minLength": 0,
|
|
"maxLength": 100
|
|
},
|
|
"value": {
|
|
"oneOf": [
|
|
{
|
|
"type": "array"
|
|
},
|
|
{
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"type": "object"
|
|
},
|
|
{
|
|
"type": "integer"
|
|
},
|
|
{
|
|
"type": "string"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|