Sort
sort := sort_key | [ sort_key, ... ]
sort_key := { "field": "$asc" | "$desc" }
Examples:
Sort by login ascending:
{ "login":"$asc" }
Sort by last update date descending, then login ascending
[ { "lastUpdateDate":"$desc" }, { "login": "$asc" }]