2022-05-11 18:47:31 -04:00
|
|
|
{
|
|
|
|
"type": "object",
|
2023-01-04 00:36:56 -05:00
|
|
|
"description": "NginxTemplateList",
|
2022-05-11 18:47:31 -04:00
|
|
|
"additionalProperties": false,
|
|
|
|
"required": ["total", "offset", "limit", "sort"],
|
|
|
|
"properties": {
|
|
|
|
"total": {
|
|
|
|
"type": "integer",
|
|
|
|
"description": "Total number of rows"
|
|
|
|
},
|
|
|
|
"offset": {
|
|
|
|
"type": "integer",
|
|
|
|
"description": "Pagination Offset"
|
|
|
|
},
|
|
|
|
"limit": {
|
|
|
|
"type": "integer",
|
|
|
|
"description": "Pagination Limit"
|
|
|
|
},
|
|
|
|
"sort": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "Sorting",
|
|
|
|
"items": {
|
|
|
|
"$ref": "#/components/schemas/SortObject"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"filter": {
|
|
|
|
"type": "array",
|
|
|
|
"description": "Filters",
|
|
|
|
"items": {
|
|
|
|
"$ref": "#/components/schemas/FilterObject"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
2023-01-04 00:36:56 -05:00
|
|
|
"$ref": "#/components/schemas/NginxTemplateObject"
|
2022-05-11 18:47:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|