6.1.4.3 GET ALL schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "GET ALL JSON Schema for Access Control List Rules",
   "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" ]
     },
     "aclRule": {
       "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"
             },
             "protocol": {
               "enum": [ "All", "TCP", "UDP", "HTTP", "ICMPv4", "ICMPv6" ]
             },
             "sourcePortRange": {
               "type": "string"
             },
             "destinationPortRange": {
               "type": "string"
             },
             "action": {
               "enum": [ "Allow", "Deny" ]
             },
             "sourceAddressPrefix": {
               "type": "string"
             },
             "destinationAddressPrefix": {
               "type": "string"
             },
             "priority": {
               "type": "string",
               "pattern": "^[1-9][0-9][0-9]+$"
             },
             "type": {
               "enum": [ "Inbound", "Outbound" ]
             },
             "logging": {
               "enum": [ "Enabled", "Disabled" ]
             },
             "description": {
               "type": "string"
             }
           },
           "required": [
             "provisioningState",
             "protocol",
             "sourcePortRange",
             "destinationPortRange",
             "action",
             "sourceAddressPrefix",
             "destinationAddressPrefix",
             "priority",
             "type",
             "logging"
           ]
         }
       },
       "required": [
         "resourceRef",
         "resourceId",
         "etag",
         "instanceId",
         "properties"
       ]
     },
     "aclRuleArray": {
       "type": "array",
       "minItems": 0,
       "uniqueItems": true,
       "items": { "$ref": "#/definitions/aclRule" }
     }
   },
   "properties": {
     "value": { "$ref": "#/definitions/aclRuleArray" },
     "nextLink": {
       "type": "string",
       "format": "uri",
       "default": ""
     }
   },
   "required": ["nextLink"]
 }