Rapid7 · Schema

SearchRequestSort

The sorting information.

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
field string The field to sort by.
order string The sorting direction. Sorting is case-insensitive when sorting strings.
View JSON Schema on GitHub

JSON Schema

rapid7-searchrequestsort-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchRequestSort",
  "title": "SearchRequestSort",
  "type": "object",
  "properties": {
    "field": {
      "type": "string",
      "description": "The field to sort by.",
      "example": "name"
    },
    "order": {
      "type": "string",
      "description": "The sorting direction. Sorting is case-insensitive when sorting strings.",
      "enum": [
        "ASC",
        "DESC",
        "ASC,DESC"
      ]
    }
  },
  "description": "The sorting information."
}