Amazon GuardDuty · Schema
RemoteIpDetails
Contains information about the remote IP address of the connection.
Anomaly DetectionComplianceMachine LearningMonitoringSecurityThreat Detection
Properties
| Name | Type | Description |
|---|---|---|
| City | object | |
| Country | object | |
| GeoLocation | object | |
| IpAddressV4 | object | |
| Organization | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-guardduty/refs/heads/main/json-schema/guardduty-remote-ip-details-schema.json",
"title": "RemoteIpDetails",
"description": "Contains information about the remote IP address of the connection.",
"type": "object",
"properties": {
"City": {
"allOf": [
{
"$ref": "#/components/schemas/City"
},
{
"xml": {
"name": "city"
},
"description": "The city information of the remote IP address."
}
]
},
"Country": {
"allOf": [
{
"$ref": "#/components/schemas/Country"
},
{
"xml": {
"name": "country"
},
"description": "The country code of the remote IP address."
}
]
},
"GeoLocation": {
"allOf": [
{
"$ref": "#/components/schemas/GeoLocation"
},
{
"xml": {
"name": "geoLocation"
},
"description": "The location information of the remote IP address."
}
]
},
"IpAddressV4": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"xml": {
"name": "ipAddressV4"
},
"description": "The IPv4 remote address of the connection."
}
]
},
"Organization": {
"allOf": [
{
"$ref": "#/components/schemas/Organization"
},
{
"xml": {
"name": "organization"
},
"description": "The ISP organization information of the remote IP address."
}
]
}
}
}