Sorting
The searching API allows ordering of the results. You can sort your search results, including an order
object to the JSON.
Quick sort example
{
"filter": {},
"sort": {
// Array of ordering parameters
"parameters": [
{
// Name of parameter defined in the Default Datamodels
"name": "provision.administration.identifier",
// Enumeration string with ordering type. Valid values are:
// - ASCENDING
// - DESCENDING
"type": "ASCENDING"
}
]
}
}