Skip to content

Reads a JSON file describing a collection of datasets and returns an azr_catalog.

The expected JSON shape:


{
  "datasets": [
    {
      "name": "sales_orders",
      "scheme": "abfss",
      "container": "raw",
      "storage": { "prod": "stprod001", "preprod": "stpreprod001" },
      "path": "sales/orders",
      "format": "delta"
    }
  ]
}

Usage

azr_catalog_read(json_file)

Arguments

json_file

Path to a JSON file.

Value

An azr_catalog object.