Properties
| Name | Type | Description |
|---|---|---|
| _ref | string | The object reference for this DHCP range. |
| network | string | The parent network in CIDR notation. |
| start_addr | string | The starting IP address of the range. |
| end_addr | string | The ending IP address of the range. |
| network_view | string | The network view. |
| comment | string | A descriptive comment. |
| disable | boolean | Whether the DHCP range is disabled. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DHCPRange",
"title": "DHCPRange",
"type": "object",
"properties": {
"_ref": {
"type": "string",
"description": "The object reference for this DHCP range."
},
"network": {
"type": "string",
"description": "The parent network in CIDR notation."
},
"start_addr": {
"type": "string",
"format": "ipv4",
"description": "The starting IP address of the range."
},
"end_addr": {
"type": "string",
"format": "ipv4",
"description": "The ending IP address of the range."
},
"network_view": {
"type": "string",
"description": "The network view."
},
"comment": {
"type": "string",
"description": "A descriptive comment.",
"maxLength": 256
},
"disable": {
"type": "boolean",
"description": "Whether the DHCP range is disabled."
}
}
}