Amazon GuardDuty · Schema

Organization

Contains information about the ISP organization of the remote IP address.

Anomaly DetectionComplianceMachine-LearningMonitoringSecurityThreat Detection

Properties

Name Type Description
Asn object
AsnOrg object
Isp object
Org object
View JSON Schema on GitHub

JSON Schema

guardduty-organization-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-organization-schema.json",
  "title": "Organization",
  "description": "Contains information about the ISP organization of the remote IP address.",
  "type": "object",
  "properties": {
    "Asn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "asn"
          },
          "description": "The Autonomous System Number (ASN) of the internet provider of the remote IP address."
        }
      ]
    },
    "AsnOrg": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "asnOrg"
          },
          "description": "The organization that registered this ASN."
        }
      ]
    },
    "Isp": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "isp"
          },
          "description": "The ISP information for the internet provider."
        }
      ]
    },
    "Org": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "org"
          },
          "description": "The name of the internet provider."
        }
      ]
    }
  }
}