Amazon Macie · Schema

IpGeoLocation

Provides geographic coordinates that indicate where a specified IP address originated from.

Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

Properties

Name Type Description
lat object
lon object
View JSON Schema on GitHub

JSON Schema

amazon-macie-ip-geo-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-ip-geo-location-schema.json",
  "title": "IpGeoLocation",
  "description": "Provides geographic coordinates that indicate where a specified IP address originated from.",
  "type": "object",
  "properties": {
    "lat": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__double"
        },
        {
          "description": "The latitude coordinate of the location, rounded to four decimal places."
        }
      ]
    },
    "lon": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__double"
        },
        {
          "description": "The longitude coordinate of the location, rounded to four decimal places."
        }
      ]
    }
  }
}