Properties
| Name | Type | Description |
|---|---|---|
| _ref | string | The object reference for this network. |
| network | string | The network address in CIDR notation. |
| network_view | string | The network view containing this network. |
| comment | string | A descriptive comment for the network. |
| members | array | The list of DHCP members serving this network. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Network",
"title": "Network",
"type": "object",
"properties": {
"_ref": {
"type": "string",
"description": "The object reference for this network."
},
"network": {
"type": "string",
"description": "The network address in CIDR notation."
},
"network_view": {
"type": "string",
"description": "The network view containing this network."
},
"comment": {
"type": "string",
"description": "A descriptive comment for the network.",
"maxLength": 256
},
"members": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The Grid member name."
},
"_struct": {
"type": "string",
"description": "The member structure type (e.g. dhcpmember)."
}
}
},
"description": "The list of DHCP members serving this network."
}
}
}