SearchResult Data Type
- Abstract Type
name | data type | constraints | description |
---|---|---|---|
count | number | required int | The total number of results for the query. |
offset | number | required int | The current offset used in the query. |
limit | number | required int | The maximum number of results for the query. |
sortParameter | TaskSearchParameter | The parameter the results are sorted by. | |
sortOrder | SortOrder | The order the results are sorted by. | |
results | array of object | The results of the query. |
Example
{ "count" : 10, "offset" : 0, "limit" : 50, "sortParameter" : "task-id", "sortOrder" : "ASCENDING", "results" : { "taskID" : 1234, "wcuID" : "04-1B-94-00-1D-2A", "type" : "blue_pirat", "assignmentName" : "Trigger_test", "taskCreatorID" : "user123", "status" : { "code" : 2, "text" : "RUNNING" }, "lastUploadDate" : "2024-03-14T09:31:06Z", "creationDate" : "2024-03-12T11:31:06Z" } }