Skip to content

Commit

Permalink
docs: Add flattening configuration examples (#2037)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Nov 10, 2023
1 parent e43be2c commit 62a2eaf
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ name: "CodeQL"
on:
push:
branches: [ "main" ]
pull_request: {}
paths:
- .github/workflows/codeql-analysis.yml
- '**.py' # Any Python file
pull_request:
paths:
- .github/workflows/codeql-analysis.yml
- '**.py' # Any Python file
schedule:
- cron: '37 10 * * 5'

Expand Down
18 changes: 18 additions & 0 deletions docs/stream_maps.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,24 @@ three distinct fields:
- `user__last_name`
- `user__id`

#### Flattening Example

````{tab} meltano.yml
```yaml
flattening_enabled: true
flattening_max_depth: 1 # flatten only top-level properties
```
````

````{tab} JSON
```json
{
"flattening_enabled": true,
"flattening_max_depth": 1
}
```
````

## Out-of-scope capabilities

These capabilities are all out of scope _by design_:
Expand Down

0 comments on commit 62a2eaf

Please sign in to comment.