{ "$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-owner-schema.json", "title": "IpOwner", "description": "Provides information about the registered owner of an IP address.", "type": "object", "properties": { "asn": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The autonomous system number (ASN) for the autonomous system that included the IP address." } ] }, "asnOrg": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The organization identifier that's associated with the autonomous system number (ASN) for the autonomous system that included the IP address." } ] }, "isp": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The name of the internet service provider (ISP) that owned the IP address." } ] }, "org": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "The name of the organization that owned the IP address." } ] } } }