Amazon GuardDuty · JSON Structure

Guardduty Update Findings Feedback Request Structure

UpdateFindingsFeedbackRequest schema from Amazon GuardDuty API

Type: object Properties: 3 Required: 2
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection

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

Properties

FindingIds Feedback Comments

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-update-findings-feedback-request-structure.json",
  "name": "UpdateFindingsFeedbackRequest",
  "description": "UpdateFindingsFeedbackRequest schema from Amazon GuardDuty API",
  "type": "object",
  "properties": {
    "FindingIds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FindingIds"
        },
        {
          "xml": {
            "name": "findingIds"
          },
          "description": "The IDs of the findings that you want to mark as useful or not useful."
        }
      ]
    },
    "Feedback": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Feedback"
        },
        {
          "xml": {
            "name": "feedback"
          },
          "description": "The feedback for the finding."
        }
      ]
    },
    "Comments": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "comments"
          },
          "description": "Additional feedback about the GuardDuty findings."
        }
      ]
    }
  },
  "required": [
    "FindingIds",
    "Feedback"
  ]
}