6.8.4.1.1 PUT schema

 {
   "$schema": "http://json-schema.org/draft-04/schema#",
   "title": "PUT JSON Schema for ipPools",
   "type": "object",
   "properties": {
     "resourceId": {
       "type": "string"
     },
     "properties": {
       "type": "object",
       "properties": {
         "startIpAddress": {
           "type": "string"
         },
         "endIpAddress": {
           "type": "string"
         }
       },
       "required": [
         "startIpAddress",
         "endIpAddress"
       ]
     }
   },
   "required": [
     "resourceId",
     "properties"
   ]
 }