linode · Schema
LinodeIPAddresses
Properties
| Name | Type | Description |
|---|---|---|
| ipv4 | object | |
| ipv6 | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LinodeIPAddresses",
"title": "LinodeIPAddresses",
"type": "object",
"properties": {
"ipv4": {
"type": "object",
"properties": {
"public": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IPAddress"
},
"description": "Public IPv4 addresses."
},
"private": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IPAddress"
},
"description": "Private IPv4 addresses."
},
"shared": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IPAddress"
},
"description": "Shared IPv4 addresses."
},
"reserved": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IPAddress"
},
"description": "Reserved IPv4 addresses."
}
}
},
"ipv6": {
"type": "object",
"properties": {
"slaac": {
"$ref": "#/components/schemas/IPv6Address"
},
"link_local": {
"$ref": "#/components/schemas/IPv6Address"
},
"global": {
"type": "array",
"items": {
"$ref": "#/components/schemas/IPv6Range"
}
}
}
}
}
}