Nuxeo · Schema
savedsearches
Content ManagementDigital Asset ManagementEnterpriseDocumentsWorkflowsSearchOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| currentPageIndex | integer | |
| currentPageOffset | integer | |
| currentPageSize | integer | |
| entity-type | string | |
| entries | array | |
| erroMessage | string | |
| hasError | boolean | |
| isLastPageAvailable | boolean | |
| isNext | boolean | |
| isPaginable | boolean | |
| isPreviousPageAvailable | boolean | |
| isSortable | boolean | |
| maxPageSize | integer | |
| numberOfPages | integer | |
| pageCount | integer | |
| pageIndex | integer | |
| pageSize | integer | |
| resultCount | integer | |
| totalSize | integer |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/nuxeo/main/json-schema/savedsearches.json",
"title": "savedsearches",
"properties": {
"currentPageIndex": {
"type": "integer",
"uniqueItems": false
},
"currentPageOffset": {
"type": "integer",
"uniqueItems": false
},
"currentPageSize": {
"type": "integer",
"uniqueItems": false
},
"entity-type": {
"type": "string",
"uniqueItems": false
},
"entries": {
"items": {
"$ref": "#/components/schemas/savedsearch"
},
"type": "array",
"uniqueItems": false
},
"erroMessage": {
"type": "string",
"uniqueItems": false
},
"hasError": {
"type": "boolean",
"uniqueItems": false
},
"isLastPageAvailable": {
"type": "boolean",
"uniqueItems": false
},
"isNext": {
"type": "boolean",
"uniqueItems": false
},
"isPaginable": {
"type": "boolean",
"uniqueItems": false
},
"isPreviousPageAvailable": {
"type": "boolean",
"uniqueItems": false
},
"isSortable": {
"type": "boolean",
"uniqueItems": false
},
"maxPageSize": {
"type": "integer",
"uniqueItems": false
},
"numberOfPages": {
"type": "integer",
"uniqueItems": false
},
"pageCount": {
"type": "integer",
"uniqueItems": false
},
"pageIndex": {
"type": "integer",
"uniqueItems": false
},
"pageSize": {
"type": "integer",
"uniqueItems": false
},
"resultCount": {
"type": "integer",
"uniqueItems": false
},
"totalSize": {
"type": "integer",
"uniqueItems": false
}
},
"required": [
"entity-type",
"entries"
],
"uniqueItems": false
}