# import adls

> Import a data contract from files in Azure Blob Storage / ADLS.

# `datacontract import adls`

{/* AUTOGENERATED from `datacontract --help`: do not edit by hand; regenerate with update_command_docs.py */}

Import a data contract from files in Azure Blob Storage / ADLS.

```bash
datacontract import adls [OPTIONS]
```

| Option | Default | Description |
|---|---|---|
| `--source` | — | The location of the files, e.g. abfss://my-container/orders/*.json. |
| `--format` | — | File format: json, csv, parquet or delta (inferred from the suffix). |
| `--delimiter` | — | For JSON: new_line, array or none. Detected automatically when omitted. |
| `--output` | — | File path where the Data Contract will be saved. If not provided, it will be printed to stdout. |
| `--owner` | — | The owner or team responsible for managing the data contract. |
| `--id` | — | The identifier for the data contract. |
| `--debug` / `--no-debug` | — | Enable debug logging |

```bash
datacontract import adls --source abfss://my-container/orders/*.json --output datacontract.yaml
```

Guide: **[Import: Azure Blob / ADLS](../../imports/adls.md)**.
