Table Format · Example Payload

Apache Iceberg List Namespaces Example

Data LakehouseOpen Table FormatApache IcebergDelta LakeApache HudiData LakeACID TransactionsSchema EvolutionTime Travel

Apache Iceberg List Namespaces Example is an example object payload from Table Format, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://catalog.example.com/v1/namespaces",
    "headers": {
      "Authorization": "Bearer {ACCESS_TOKEN}",
      "Content-Type": "application/json"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "namespaces": [
        ["marketing"],
        ["sales"],
        ["data_engineering", "raw"],
        ["data_engineering", "curated"]
      ]
    }
  }
}