Infoblox · Schema

NetworkCreate

CloudDDIDHCPDNSIPAMNetwork ManagementSecurityThreat Intelligence

Properties

Name Type Description
network string The network address in CIDR notation (e.g. 10.0.0.0/24).
network_view string The network view. Defaults to the default network view.
comment string A descriptive comment.
View JSON Schema on GitHub

JSON Schema

infoblox-networkcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NetworkCreate",
  "title": "NetworkCreate",
  "type": "object",
  "required": [
    "network"
  ],
  "properties": {
    "network": {
      "type": "string",
      "description": "The network address in CIDR notation (e.g. 10.0.0.0/24)."
    },
    "network_view": {
      "type": "string",
      "description": "The network view. Defaults to the default network view."
    },
    "comment": {
      "type": "string",
      "description": "A descriptive comment.",
      "maxLength": 256
    }
  }
}