6.16.10.2 PUT schema v2

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "PUT JSON Schema for subnet v2",
   "type": "object",
   "definitions": {
     "resourceRef": {
       "type": "object",
       "additionalProperties": false,
       "properties": {
         "resourceRef": {
           "type": "string"
         }
       },
       "required": [
         "resourceRef"
       ]
     }
   },
   "properties": {
     "resourceId": {
       "type": "string"
     },
     "properties": {
       "type": "object",
       "properties": {
         "addressPrefix": {
           "type": "string"
         },
         "accessControlList": {
           "$ref": "#/definitions/resourceRef"
         },
         "encryptionEnabled": {
           "type": "boolean",
           "default": false
         }
       },
       "required": [
         "addressPrefix"
       ]
     }
   },
   "required": [
     "properties"
   ]
 }