Files
nginx-proxy-manager/backend/embed/api_docs/components/SortObject.json
2021-06-30 10:50:55 +10:00

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)$"
}
}
}