{
  "name": "ListBuckets",
  "plane": "control",
  "terraformEligible": true,
  "protocol": {
    "kind": "rest",
    "method": "GET",
    "path": "/",
    "query": [],
    "headers": [],
    "body": false
  },
  "requestBody": "explicitlyEmpty",
  "responseBody": "json",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "title": "ListBucketsRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
      "BucketSummary": {
        "properties": {
          "name": {
            "type": "string"
          }
        },
        "required": [
          "name"
        ],
        "type": "object"
      }
    },
    "properties": {
      "buckets": {
        "items": {
          "$ref": "#/definitions/BucketSummary"
        },
        "type": "array"
      }
    },
    "required": [
      "buckets"
    ],
    "title": "ListBucketsResponse",
    "type": "object"
  }
}
