Amazon GuardDuty · JSON Structure

Guardduty Sort Criteria Structure

Contains information about the criteria used for sorting findings.

Type: object Properties: 2
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

SortCriteria is a JSON Structure definition published by Amazon GuardDuty, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AttributeName OrderBy

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-structure/guardduty-sort-criteria-structure.json",
  "name": "SortCriteria",
  "description": "Contains information about the criteria used for sorting findings.",
  "type": "object",
  "properties": {
    "AttributeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "attributeName"
          },
          "description": "Represents the finding attribute, such as <code>accountId</code>, that sorts the findings."
        }
      ]
    },
    "OrderBy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrderBy"
        },
        {
          "xml": {
            "name": "orderBy"
          },
          "description": "The order by which the sorted findings are to be displayed."
        }
      ]
    }
  }
}