Azure Networking · Schema

AddressSpace

AddressSpace contains an array of IP address ranges.

AzureCloudInfrastructureMicrosoftNetworking

Properties

Name Type Description
addressPrefixes array A list of address blocks reserved for this virtual network in CIDR notation.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-networking-addressspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddressSpace",
  "title": "AddressSpace",
  "type": "object",
  "description": "AddressSpace contains an array of IP address ranges.",
  "properties": {
    "addressPrefixes": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "A list of address blocks reserved for this virtual network in CIDR notation."
    }
  }
}