{
  "name": "CreateMultipartUpload",
  "plane": "data",
  "terraformEligible": false,
  "protocol": {
    "kind": "rest",
    "method": "POST",
    "path": "/{bucket}/{key}",
    "query": [
      "uploads"
    ],
    "headers": [
      "content-type"
    ],
    "body": false
  },
  "requestBody": "explicitlyEmpty",
  "responseBody": "xml",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "bucket": {
        "type": "string"
      },
      "contentType": {
        "type": [
          "string",
          "null"
        ]
      },
      "key": {
        "type": "string"
      }
    },
    "required": [
      "bucket",
      "key"
    ],
    "title": "CreateMultipartUploadRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "bucket": {
        "type": "string"
      },
      "key": {
        "type": "string"
      },
      "uploadId": {
        "type": "string"
      }
    },
    "required": [
      "bucket",
      "key",
      "uploadId"
    ],
    "title": "MultipartUpload",
    "type": "object"
  }
}
