{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BackendAddressPool", "title": "BackendAddressPool", "type": "object", "description": "Pool of backend IP addresses.", "properties": { "id": { "type": "string", "description": "Resource ID." }, "name": { "type": "string", "description": "The name of the resource." }, "properties": { "type": "object", "properties": { "loadBalancerBackendAddresses": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "Name of the backend address." }, "properties": { "type": "object", "properties": { "virtualNetwork": { "type": "object", "properties": { "id": { "type": "string" } }, "description": "Reference to an existing virtual network." }, "ipAddress": { "type": "string", "description": "IP address belonging to the referenced virtual network." } } } } }, "description": "An array of backend addresses." }, "provisioningState": { "type": "string", "readOnly": true, "description": "The provisioning state of the backend address pool resource." } } } } }