6.22.2 GET ALL schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "GET ALL JSON Schema for internalResourceInstances",
   "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}$"
     },
     "provisioningState": {
       "enum": [ "Succeeded", "Updating", "Deleting", "Failed" ]
     },
     "internalResourceInstances": {
       "type": "array",
       "uniqueItems": true,
       "items": {
         "type": "object",
         "properties": {
           "resourceRef": {
             "type": "string"
           },
           "resourceId": {
             "type": "string"
           },
           "instanceId": {
             "$ref": "#/definitions/GUID"
           },
           "properties": {
             "type": "object",
             "properties": {
               "provisioningState": {
                 "$ref": "#/definitions/provisioningState"
               },
               "resourceReference": {
                 "type": "string"
               }
             },
             "required": [
               "provisioningState",
               "resourceReference"
             ]
           }
         },
         "required": [
           "resourceRef",
           "resourceId",
           "instanceId",
           "properties"
         ]
       }
     }
   },
   "properties": {
     "value": { "$ref": "#/definitions/internalResourceInstances" },
     "nextLink": {
       "type": "string",
       "format": "uri",
       "default": ""
     }
   },
   "required": ["nextLink"]
 }