linode · Schema
IPv6Address
Properties
| Name | Type | Description |
|---|---|---|
| address | string | The IPv6 address. |
| prefix | integer | The network prefix length. |
| rdns | string | The reverse DNS entry. |
| type | string | The type of IPv6 address. |
| region | string | The region for this address. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IPv6Address",
"title": "IPv6Address",
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "The IPv6 address."
},
"prefix": {
"type": "integer",
"description": "The network prefix length."
},
"rdns": {
"type": "string",
"description": "The reverse DNS entry."
},
"type": {
"type": "string",
"description": "The type of IPv6 address."
},
"region": {
"type": "string",
"description": "The region for this address."
}
}
}