6.20.4.2 GET ALL Schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "GET ALL JSON Schema for slbStateResults",
   "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" ]
     },
     "dataGroups": {
       "type": "array",
       "items": {
         "additionalProperties": false,
         "properties": {
           "name": {
             "enum": [ "Fabric", "Tenant" ]
           },
           "description": {
             "type": "string"
           },
           "dataSections": {
             "type": "array",
             "items": {
               "type": "object",
               "properties": {
                 "name": {
                   "type": "string",
                   "enum": [ "SlbmVips", "MuxState", "RouterConfiguration", "ConnectedHostInfo", "VipRanges", "MuxRoutes", "VipConsolidatedState" ]
                 },
                 "description": {
                   "type": "string",
                   "enum": [ "Slbm Vips", "Mux State", "Router Configuration", "Connected Host Info", "Vip Ranges", "Mux Routes", "Vip Consolidated State" ]
                 },
                 "dataRetrievalFailed": {
                   "type": "boolean"
                 },
                 "dataUnits": {
                   "type": "array",
                   "items": {
                     "additionalProperties": false,
                     "properties": {
                       "name": {
                         "type": "string"
                       },
                       "value": {
                         "type": "array",
                         "items": {
                           "type": "string"
                         }
                       }
                     },
                     "required": [ "value" ]
                   }
                 }
               },
               "required": [ "name", "description", "dataRetrievalFailed", "dataUnits" ]
             }
           }
         },
         "required": [ "name", "description", "dataSections" ]
       }
     },
     "slbState": {
       "type": "object",
       "properties": {
         "resourceRef": {
           "type": "string"
         },
         "resourceId": {
           "type": "string"
         },
         "etag": {
           "type": "string"
         },
         "instanceId": {
           "$ref": "#/definitions/GUID"
         },
         "properties": {
           "type": "object",
           "properties": {
             "provisioningState": {
               "$ref": "#/definitions/provisioningState"
             },
             "submitTime": {
               "type": "string"
             },
             "status": {
               "type": "string",
               "enum": [ "Pending", "InProgress", "Failure", "Success" ]
             },
             "output": {
               "type": "object",
               "properties": {
                 "dataGroups": {
                   "$ref": "#/definitions/dataGroups"
                 }
               }
             }
           },
           "required": [
             "provisioningState",
             "status",
             "submitTime"
           ]
         }
       },
       "required": [
         "properties",
         "resourceRef",
         "etag",
         "instanceId",
         "resourceId"
       ]
     },
     "slbStateArray": {
       "type": "array",
       "minItems": 0,
       "uniqueItems": true,
       "items": { "$ref": "#/definitions/slbState" }
     }
   },
   "properties": {
     "value": { "$ref": "#/definitions/slbStateArray" },
     "nextLink": {
       "type": "string",
       "format": "uri",
       "default": ""
     }
   },
   "required": [ "nextLink" ]
 }