6.5.9.3 GET ALL schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "GET JSON Schema for ALL loadBalancers probes",
   "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" ]
     },
     "provisioningState": {
       "enum": [ "Succeeded", "Updating", "Deleting", "Failed" ]
     }
   },
   "type": "object",
   "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"
               },
               "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"
         ]
       }
     },
     "nextLink": {
       "type": "string",
       "format": "uri",
       "default": ""
     }
   },
   "required": [ "nextLink" ]
 }