A request containing all information critical to model scanning.
| Name | Type | Description | Notes |
|---|---|---|---|
| scan_tables | bool | A flag indicating whether the tables should be scanned. | |
| scan_views | bool | A flag indicating whether the views should be scanned. | |
| separator | str | A separator between prefixes and the names. | |
| schemata | [str] | What schemata will be scanned. | [optional] |
| table_prefix | str | Tables starting with this prefix will be scanned. The prefix is then followed by the value of `separator` parameter. Given the table prefix is `out_table` and separator is `__`, the table with name like `out_table__customers` will be scanned. | [optional] |
| view_prefix | str | Views starting with this prefix will be scanned. The prefix is then followed by the value of `separator` parameter. Given the view prefix is `out_view` and separator is `__`, the table with name like `out_view__us_customers` will be scanned. | [optional] |
| any string name | bool, date, datetime, dict, float, int, list, str, none_type | any string name can be used but the value must be the correct type | [optional] |