{
  "name": "CreateQueue",
  "plane": "control",
  "terraformEligible": true,
  "protocol": {
    "kind": "cloudJson",
    "target": "CloudQueue.CreateQueue",
    "service": "queue"
  },
  "requestBody": "typed",
  "responseBody": "typed",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "attributes": {
        "additionalProperties": {
          "type": "string"
        },
        "default": null,
        "type": [
          "object",
          "null"
        ]
      },
      "queueName": {
        "type": "string"
      }
    },
    "required": [
      "queueName"
    ],
    "title": "CreateQueueRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
      "IgnoredField": {
        "properties": {
          "detail": {
            "type": [
              "string",
              "null"
            ]
          },
          "path": {
            "type": "string"
          },
          "reason": {
            "type": "string"
          },
          "status": {
            "$ref": "#/definitions/IgnoredStatus"
          }
        },
        "required": [
          "path",
          "reason",
          "status"
        ],
        "type": "object"
      },
      "IgnoredStatus": {
        "enum": [
          "ignored",
          "approximated",
          "coerced"
        ],
        "type": "string"
      }
    },
    "properties": {
      "ignoredFields": {
        "items": {
          "$ref": "#/definitions/IgnoredField"
        },
        "type": "array"
      },
      "queueUrl": {
        "type": "string"
      }
    },
    "required": [
      "queueUrl"
    ],
    "title": "CreateQueueResponse",
    "type": "object"
  }
}
