6.23.2 GET schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "GET JSON Schema for iDNSServer/configuration",
   "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" ]
     }
   },
   "properties": {
     "resourceRef": {
       "type": "string",
       "enum": ["/iDnsServer/configuration"]
     },
     "resourceId": {
       "type": "string",
       "enum": ["configuration"]
     },
     "etag": {
       "type": "string"
     },
     "instanceId": {
       "$ref": "#/definitions/GUID"
     },
     "properties": {
       "type": "object",
       "properties": {
         "provisioningState": {
           "$ref": "#/definitions/provisioningState"
         },
         "connections": {
           "type": "array",
           "items": {
             "type": "object",
             "properties": {
               "managementAddresses": {
                 "type": "array",
                 "items": {
                   "type": "string"
                 }
               },
               "credential": {
                 "type": "object",
                 "properties": {
                   "resourceRef": {
                     "type": "string"
                   }
                 },
                 "required": [
                   "resourceRef"
                 ]
               },
               "credentialType": {
                 "type": "string",
                 "enum": ["X509Certificate", "usernamePassword" ]
                 
               }
             },
             "required": [
               "managementAddresses",
               "credential",
               "credentialType"
             ]
           }
         },
         "zone": {
           "type": "string"
         }
       },
       "required": [
         "connections",
         "provisioningState",
         "zone"
       ]
     }
   },
   "required": [
     "resourceRef",
     "resourceId",
     "etag",
     "instanceId",
     "properties"
   ]
 }