6.11.7.2 GET ALL schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "GET ALL JSON Schema for IP Configurations",
   "type": "object",
   "definitions": {
     "GUID": {
       "type" : "string",
       "pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
     },
     "resourceMetadata": {
       "properties": {
         "client": {
           "type": "string"
         },
         "tenantId": {
           "type": "string"
         },
         "groupId": {
           "type": "string"
         },
         "resourceName": {
           "type": "string"
         },
         "originalHref": {
           "type": "string"
         }
       }
     },
     "provisioningState": {
       "enum": [ "Succeeded", "Updating", "Deleting", "Failed" ]
     },
     "resourceRef": {
       "type": "object",
       "additionalProperties": false,
       "properties": {
         "resourceRef": {
           "type": "string"
         }
       },
       "required": [
         "resourceRef"
       ]
     },
     "ipConfigurations": {
       "type": "array",
       "items": {
         "type": "object",
         "properties": {
           "resourceRef": {
             "type": "string"
           },
           "resourceId": {
             "type": "string"
           },
           "resourceMetadata": {
             "$ref": "#/definitions/resourceMetadata"
           },
           "etag": {
             "type": "string"
           },
           "instanceId": {
             "$ref": "#/definitions/GUID"
           },
           "properties": {
             "type": "object",
             "properties": {
               "provisioningState": {
                 "$ref": "#/definitions/provisioningState"
               },
               "privateIPAllocationMethod": {
                 "enum": [ "Static", "Dynamic", "Unmanaged" ]
               },
               "privateIPAddress": {
                 "type": "string",
                 "format": "ipv4"
               },
               "subnet": {
                 "$ref": "#/definitions/resourceRef"
               },
               "accessControlList": {
                 "$ref": "#/definitions/resourceRef"
               },
               "loadBalancerBackendAddressPools": {
                 "type": "array",
                 "uniqueItems": true,
                 "items": { "$ref": "#/definitions/resourceRef" }
               },
               "loadBalancerInboundNatRules": {
                 "type": "array",
                 "uniqueItems": true,
                 "items": { "$ref": "#/definitions/resourceRef" }
               }
             },
             "required": [
               "provisioningState",
               "privateIPAllocationMethod",
               "privateIPAddress",
               "subnet"
             ]
           }
         },
         "required": [
           "resourceRef",
           "resourceId",
           "etag",
           "instanceId",
           "properties"
         ]
       }
     }
   },
  
   "properties": {
     "value": { "$ref": "#/definitions/ipConfigurations" },
     "nextLink": {
       "type": "string",
       "format": "uri",
       "default": ""
     }
   },
   "required": ["value","nextLink"]
 }