6.5.4.1 PUT schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "PUT JSON Schema for loadBalancers backendAddressPools",
   "type": "object",
   "definitions": {
     "resourceRef": {
       "type": "object",
       "additionalProperties": false,
       "properties": {
         "resourceRef": {
           "type": "string"
         }
       },
       "required": [
         "resourceRef"
       ]
     },
     "provisioningState": {
       "enum": [ "Succeeded", "Updating", "Deleting", "Failed" ]
     }
   },
   "properties": {
     "resourceRef": {
       "type": "string"
     },
     "resourceId": {
       "type": "string"
     },
     "instanceId": {
       "type": "string"
     },
     "properties": {
       "type": "object",
       "properties": {
         "provisioningState": {
           "$ref": "#/definitions/provisioningState"
         },
         "backendIPConfigurations": {
           "type": "array",
           "items": {
             "$ref": "#/definitions/resourceRef"
           }
         },
         "outboundNatRules": {
           "type": "array",
           "items": {
             "$ref": "#/definitions/resourceRef"
           }
         },
         "loadBalancingRules": {
           "type": "array",
           "items": {
             "$ref": "#/definitions/resourceRef"
           }
         }
       },
       "required": [
         "backendIPConfigurations"
       ]
     }
   },
   "required": [
     "properties"
   ]
 }