Properties
| Name | Type | Description |
|---|---|---|
| network | string | The parent network in CIDR notation. |
| start_addr | string | The starting IP address. |
| end_addr | string | The ending IP address. |
| network_view | string | The network view. |
| comment | string | A descriptive comment. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DHCPRangeCreate",
"title": "DHCPRangeCreate",
"type": "object",
"required": [
"start_addr",
"end_addr"
],
"properties": {
"network": {
"type": "string",
"description": "The parent network in CIDR notation."
},
"start_addr": {
"type": "string",
"format": "ipv4",
"description": "The starting IP address."
},
"end_addr": {
"type": "string",
"format": "ipv4",
"description": "The ending IP address."
},
"network_view": {
"type": "string",
"description": "The network view."
},
"comment": {
"type": "string",
"description": "A descriptive comment.",
"maxLength": 256
}
}
}