6.3.2 GET schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "GET JSON Schema for GatewayPools",
   "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" ]
     }
   },
   "type": "object",
   "properties": {
     "resourceRef": {
       "type": "string"
     },
     "resourceId": {
       "type": "string"
     },
     "etag": {
       "type": "string"
     },
     "instanceId": {
       "$ref": "#/definitions/GUID"
     },
     "properties": {
       "type": "object",
       "properties": {
         "provisioningState": {
          "$ref": "#/definitions/provisioningState"
         },
         "type": {
           "type": "string"
         },
         "ipConfiguration": {
           "type": "object",
           "properties": {
             "greVipSubnets": {
               "type": "array",
               "items": {
                 "type": "object",
                 "properties": {
                   "resourceRef": {
                     "type": "string"
                   }
                 },
                 "required": [
                   "resourceRef"
                 ]
               }
             },
             "publicIPAddresses": {
               "type": "array",
               "items": {
                 "type": "object",
                 "properties": {
                   "resourceRef": {
                     "type": "string"
                   }
                 },
                 "required": [
                   "resourceRef"
                 ]
               }
             }
           },
           "required": [
             "greVipSubnets",
             "publicIPAddresses"
           ]
         },
         "redundantGatewayCount": {
           "type": "integer"
         },
         "gatewayCapacityKiloBitsPerSecond": {
           "type": "integer"
         },
         "gateways": {
           "type": "array",
           "items": {
             "type": "object",
             "properties": {
               "resourceRef": {
                 "type": "string"
               }
             },
             "required": [
               "resourceRef"
             ]
           }
         },
         "VirtualGateways": {
           "type": "array",
           "items": {
             "type": "object",
             "properties": {
               "resourceRef": {
                 "type": "string"
               }
             },
             "required": [
               "resourceRef"
             ]
           }
         }
       },
       "required": [
         "provisioningState",
         "type",
         "ipConfiguration",
         "redundantGatewayCount",
         "gatewayCapacityKiloBitsPerSecond",
         "gateways",
         "VirtualGateways"
       ]
     }
   },
   "required": [
     "resourceRef",
     "resourceId",
     "etag",
     "instanceId",
     "properties"
   ]
 }