Amazon GuardDuty · Schema

RuntimeDetails

Information about the process and any required context values for a specific finding.

Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Process object
Context object
View JSON Schema on GitHub

JSON Schema

guardduty-runtime-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-runtime-details-schema.json",
  "title": "RuntimeDetails",
  "description": "Information about the process and any required context values for a specific finding.",
  "type": "object",
  "properties": {
    "Process": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProcessDetails"
        },
        {
          "xml": {
            "name": "process"
          },
          "description": "Information about the observed process."
        }
      ]
    },
    "Context": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RuntimeContext"
        },
        {
          "xml": {
            "name": "context"
          },
          "description": "Additional information about the suspicious activity."
        }
      ]
    }
  }
}