mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 11:40:04 +00:00
21 lines
332 B
JSON
21 lines
332 B
JSON
{
|
|
"type": "object",
|
|
"description": "SortObject",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"field",
|
|
"direction"
|
|
],
|
|
"properties": {
|
|
"field": {
|
|
"type": "string",
|
|
"description": "Field for sorting on"
|
|
},
|
|
"direction": {
|
|
"type": "string",
|
|
"description": "Sort order",
|
|
"pattern": "^(ASC|DESC)$"
|
|
}
|
|
}
|
|
}
|