APIs.io Engineering Platform · Schema
infra_IPInfo
The IPv4/IPv6 address that identifies where to reach a target
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| ipv4 | object | The target's IPv4 address |
| ipv6 | object | The target's IPv6 address |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/infra_IPInfo",
"title": "infra_IPInfo",
"description": "The IPv4/IPv6 address that identifies where to reach a target",
"properties": {
"ipv4": {
"description": "The target's IPv4 address",
"properties": {
"ip_addr": {
"description": "IP address of the target",
"example": "187.26.29.249",
"type": "string"
},
"virtual_network_id": {
"description": "Private virtual network identifier for the target",
"example": "c77b744e-acc8-428f-9257-6878c046ed55",
"format": "uuid",
"type": "string"
}
},
"type": "object"
},
"ipv6": {
"description": "The target's IPv6 address",
"properties": {
"ip_addr": {
"description": "IP address of the target",
"example": "64c0:64e8:f0b4:8dbf:7104:72b0:ec8f:f5e0",
"type": "string"
},
"virtual_network_id": {
"description": "Private virtual network identifier for the target",
"example": "c77b744e-acc8-428f-9257-6878c046ed55",
"format": "uuid",
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}