Properties
| Name | Type | Description |
|---|---|---|
| ipAddress | string | The IP address. |
| macAddress | string | The MAC address. |
| type | string | The type of IP address. |
| operationalStatus | string | The operational status of the network adapter. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IpAddress",
"title": "IpAddress",
"type": "object",
"description": "An IP address associated with a machine.",
"properties": {
"ipAddress": {
"type": "string",
"description": "The IP address."
},
"macAddress": {
"type": "string",
"description": "The MAC address."
},
"type": {
"type": "string",
"description": "The type of IP address."
},
"operationalStatus": {
"type": "string",
"description": "The operational status of the network adapter."
}
}
}