{
  "name": "CreateZone",
  "plane": "control",
  "terraformEligible": true,
  "protocol": {
    "kind": "cloudJson",
    "target": "CloudDns.CreateZone",
    "service": "dns"
  },
  "requestBody": "typed",
  "responseBody": "typed",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "name": {
        "type": "string"
      }
    },
    "required": [
      "name"
    ],
    "title": "CreateZoneRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "name": {
        "type": "string"
      },
      "nameservers": {
        "items": {
          "type": "string"
        },
        "type": "array"
      },
      "zoneId": {
        "type": "string"
      }
    },
    "required": [
      "name",
      "zoneId"
    ],
    "title": "ZoneDescription",
    "type": "object"
  }
}
