6.5.3 GET ALL schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "GET JSON Schema for ALL loadBalancers",
   "type": "object",
   "definitions": {
     "resourceRef": {
       "type": "object",
       "additionalProperties": false,
       "properties": {
         "resourceRef": {
           "type": "string"
         }
       },
       "required": [
         "resourceRef"
       ]
     },
     "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}$"
     },
     "protocol": {
       "enum": [ "Tcp", "Udp", "Http", "Https", "GRE", "ESP", "All" ]
     },
     "loadDistribution": {
       "enum": [ "Default", "SourceIP", "SourceIPProtocol" ]
     },
     "ipAllocationMethod": {
       "enum": [ "Dynamic", "Static", "Unmanaged" ]
     },
     "provisioningState": {
       "enum": [ "Succeeded", "Updating", "Deleting", "Failed" ]
     }
   },
   "properties": {
     "value": {
       "type": "array",
       "items": {
         "type": "object",
         "properties": {
           "resourceRef": {
             "type": "string"
           },
           "resourceId": {
             "type": "string"
           },
           "etag": {
             "type": "string"
           },
           "instanceId": {
             "$ref": "#/definitions/GUID"
           },
           "properties": {
             "type": "object",
             "properties": {
               "provisioningState": {
                 "$ref": "#/definitions/provisioningState"
               },
               "updateBackendAddressPools": {
                 "type": "boolean"
               },
               "frontendIPConfigurations": {
                 "type": "array",
                 "items": {
                   "type": "object",
                   "properties": {
                     "resourceRef": {
                       "type": "string"
                     },
                     "resourceId": {
                       "type": "string"
                     },
                     "etag": {
                       "type": "string"
                     },
                     "instanceId": {
                       "$ref": "#/definitions/GUID"
                     },
                     "properties": {
                       "type": "object",
                       "properties": {
                         "provisioningState": {
                           "$ref": "#/definitions/provisioningState"
                         },
                         "privateIPAddress": {
                           "type": "string",
                           "format": "ipv4"
                         },
                         "privateIPAllocationMethod": {
                           "$ref": "#/definitions/ipAllocationMethod"
                         },
                         "subnet": {
                           "$ref": "#/definitions/resourceRef"
                         },
                         "loadBalancingRules": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         },
                         "inboundNatRules": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         },
                         "outboundNatRules": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         }
                       },
                       "required": [
                         "provisioningState"
                       ]
                     }
                   },
                   "required": [
                     "resourceRef",
                     "resourceId",
                     "etag",
                     "instanceId",
                     "properties"
                   ]
                 }
               },
               "backendAddressPools": {
                 "type": "array",
                 "items": {
                   "type": "object",
                   "properties": {
                     "resourceRef": {
                       "type": "string"
                     },
                     "resourceId": {
                       "type": "string"
                     },
                     "etag": {
                       "type": "string"
                     },
                     "instanceId": {
                       "$ref": "#/definitions/GUID"
                     },
                     "properties": {
                       "type": "object",
                       "properties": {
                         "provisioningState": {
                           "$ref": "#/definitions/provisioningState"
                         },
                         "backendIPConfigurations": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         },
                         "outboundNatRules": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         },
                         "loadBalancingRules": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         }
                       },
                       "required": [
                         "provisioningState",
                         "backendIPConfigurations"
                       ]
                     }
                   },
                   "required": [
                     "resourceRef",
                     "resourceId",
                     "etag",
                     "instanceId",
                     "properties"
                   ]
                 }
               },
               "probes": {
                 "type": "array",
                 "items": {
                   "type": "object",
                   "properties": {
                     "resourceRef": {
                       "type": "string"
                     },
                     "resourceId": {
                       "type": "string"
                     },
                     "etag": {
                       "type": "string"
                     },
                     "instanceId": {
                       "$ref": "#/definitions/GUID"
                     },
                     "properties": {
                       "type": "object",
                       "properties": {
                         "provisioningState": {
                           "$ref": "#/definitions/provisioningState"
                         },
                         "protocol": {
                           "$ref": "#/definitions/protocol"
                         },
                         "port": {
                           "type": "integer"
                         },
                         "intervalInSeconds": {
                           "type": "integer"
                         },
                         "numberOfProbes": {
                           "type": "integer"
                         },
                         "loadBalancingRules": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         }
                       },
                       "required": [
                         "provisioningState",
                         "protocol",
                         "port"
                       ]
                     }
                   },
                   "required": [
                     "resourceRef",
                     "resourceId",
                     "etag",
                     "instanceId",
                     "properties"
                   ]
                 }
               },
               "inboundNatRules": {
                 "type": "array",
                 "items": {
                   "type": "object",
                   "properties": {
                     "resourceRef": {
                       "type": "string"
                     },
                     "resourceId": {
                       "type": "string"
                     },
                     "etag": {
                       "type": "string"
                     },
                     "instanceId": {
                       "$ref": "#/definitions/GUID"
                     },
                     "properties": {
                       "type": "object",
                       "properties": {
                         "provisioningState": {
                           "$ref": "#/definitions/provisioningState"
                         },
                         "frontendIPConfigurations": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         },
                         "protocol": {
                           "$ref": "#/definitions/protocol"
                         },
                         "frontendPort": {
                           "type": "integer"
                         },
                         "backendPort": {
                           "type": "integer"
                         },
                         "enableFloatingIP": {
                           "type": "boolean"
                         },
                         "idleTimeoutInMinutes": {
                           "type": "integer"
                         },
                         "backendIPConfiguration": {
                           "$ref": "#/definitions/resourceRef"
                         }
                       },
                       "required": [
                         "provisioningState",
                         "frontendIPConfigurations",
                         "protocol",
                         "frontendPort",
                         "enableFloatingIP"
                       ]
                     }
                   },
                   "required": [
                     "resourceRef",
                     "resourceId",
                     "etag",
                     "instanceId",
                     "properties"
                   ]
                 }
               },
               "outboundNatRules": {
                 "type": "array",
                 "items": {
                   "type": "object",
                   "properties": {
                     "resourceRef": {
                       "type": "string"
                     },
                     "resourceId": {
                       "type": "string"
                     },
                     "etag": {
                       "type": "string"
                     },
                     "instanceId": {
                       "$ref": "#/definitions/GUID"
                     },
                     "properties": {
                       "type": "object",
                       "properties": {
                         "provisioningState": {
                           "$ref": "#/definitions/provisioningState"
                         },
                         "frontendIPConfigurations": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         },
                         "protocol": {
                           "$ref": "#/definitions/protocol"
                         },
                         "backendAddressPool": {
                           "$ref": "#/definitions/resourceRef"
                         }
                       },
                       "required": [
                         "provisioningState",
                         "frontendIPConfigurations",
                         "protocol",
                         "backendAddressPool"
                       ]
                     }
                   },
                   "required": [
                     "resourceRef",
                     "resourceId",
                     "etag",
                     "instanceId",
                     "properties"
                   ]
                 }
               },
               "loadBalancingRules": {
                 "type": "array",
                 "items": {
                   "type": "object",
                   "properties": {
                     "resourceRef": {
                       "type": "string"
                     },
                     "resourceId": {
                       "type": "string"
                     },
                     "instanceId": {
                       "$ref": "#/definitions/GUID"
                     },
                     "properties": {
                       "type": "object",
                       "properties": {
                         "provisioningState": {
                           "$ref": "#/definitions/provisioningState"
                         },
                         "frontendIPConfigurations": {
                           "type": "array",
                           "items": {
                             "$ref": "#/definitions/resourceRef"
                           }
                         },
                         "protocol": {
                           "$ref": "#/definitions/protocol"
                         },
                         "frontendPort": {
                           "type": "integer"
                         },
                         "backendPort": {
                           "type": "integer"
                         },
                         "enableFloatingIP": {
                           "type": "boolean"
                         },
                         "idleTimeoutInMinutes": {
                           "type": "integer"
                         },
                         "backendAddressPool": {
                           "$ref": "#/definitions/resourceRef"
                         },
                         "loadDistribution": {
                           "$ref": "#/definitions/loadDistribution"
                         }
                       },
                       "required": [
                         "provisioningState",
                         "frontendIPConfigurations",
                         "protocol",
                         "frontendPort",
                         "loadDistribution"
                       ]
                     }
                   },
                   "required": [
                     "resourceRef",
                     "resourceId",
                     "instanceId",
                     "properties"
                   ]
                 }
               }
             },
             "required": [
               "provisioningState",
               "frontendIPConfigurations"
             ]
           }
         },
         "required": [
           "resourceRef",
           "resourceId",
           "etag",
           "instanceId",
           "properties"
         ]
       }
     },
     "nextLink": {
       "type": "string",
       "format": "uri",
       "default": ""
     }
   },
   "required": [
     "nextLink"
   ]
 }