Skip to content

Commit 3ec4a4d

Browse files
authored
Update README.md
1 parent 34c647b commit 3ec4a4d

File tree

1 file changed

+46
-4
lines changed

1 file changed

+46
-4
lines changed

README.md

Lines changed: 46 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This package is perfect for dbt users who want to integrate Zendesk data into th
2626
pip install dlt
2727
```
2828
2. **Configure the Pipeline:**
29-
Follow the dlt Zendesk [pipeline documentation](https://dlthub.com/docs/dlt-ecosystem/verified-sources/zendesk) to set up your pipeline. Ensure you have your Zendesk and destination credentials configured.
29+
Follow the dlt [Zendesk pipeline documentation](https://dlthub.com/docs/dlt-ecosystem/verified-sources/zendesk) to set up your pipeline. Ensure you have your Zendesk and destination credentials configured.
3030

3131
3. **Run the Pipeline:**
3232
Extract and load data from the Zendesk API into your data warehouse using the Zendesk pipeline. As Zendesk pipeline integrates multiple sources. Here, we will build a model for the `zendesk_support` source. For more details on sources, refer to the documentation.
@@ -85,11 +85,53 @@ marts/
8585
│ │ ├── dim_views__execution__columns.sql
8686
│ │ ├── dim_views__execution__fields.sql
8787
│ │ └── dim_views.sql
88-
│ ├── staging/ #same models as marts with prefix `stg`
88+
│ ├── staging/
89+
│ │ ├── stg__dlt_loads.sql
90+
│ │ ├── stg_automations__actions__value.sql
91+
│ │ ├── stg_automations__actions.sql
92+
│ │ ├── stg_automations__conditions__all.sql
93+
│ │ ├── stg_automations.sql
94+
│ │ ├── stg_brands__ticket_form_ids.sql
95+
│ │ ├── stg_brands.sql
96+
│ │ ├── stg_custom_agent_roles.sql
97+
│ │ ├── stg_group_memberships.sql
98+
│ │ ├── stg_groups.sql
99+
│ │ ├── stg_macros__actions.sql
100+
│ │ ├── stg_macros.sql
101+
│ │ ├── stg_organization_memberships.sql
102+
│ │ ├── stg_organizations.sql
103+
│ │ ├── stg_recipient_addresses.sql
104+
│ │ ├── stg_requests.sql
105+
│ │ ├── stg_ticket_events__child_events__added_tags.sql
106+
│ │ ├── stg_ticket_events__child_events__tags.sql
107+
│ │ ├── stg_ticket_events__child_events.sql
108+
│ │ ├── stg_ticket_events.sql
109+
│ │ ├── stg_ticket_fields__custom_field_options.sql
110+
│ │ ├── stg_ticket_fields__custom_statuses.sql
111+
│ │ ├── stg_ticket_fields__system_field_options.sql
112+
│ │ ├── stg_ticket_fields.sql
113+
│ │ ├── stg_ticket_forms__ticket_field_ids.sql
114+
│ │ ├── stg_ticket_forms.sql
115+
│ │ ├── stg_ticket_metric_events.sql
116+
│ │ ├── stg_ticket_metrics.sql
117+
│ │ ├── stg_tickets__test_multiple_choice.sql
118+
│ │ ├── stg_tickets.sql
119+
│ │ ├── stg_triggers__actions__value.sql
120+
│ │ ├── stg_triggers__actions.sql
121+
│ │ ├── stg_triggers__conditions__all.sql
122+
│ │ ├── stg_triggers.sql
123+
│ │ ├── stg_users__photo__thumbnails.sql
124+
│ │ ├── stg_users.sql
125+
│ │ ├── stg_views__conditions__all.sql
126+
│ │ ├── stg_views__execution__columns.sql
127+
│ │ ├── stg_views__execution__fields.sql
128+
│ │ └── stg_views.sql
89129
│ ├── dlt_active_load_ids.sql
90-
── dlt_processed_load_ids.sql
130+
── dlt_processed_load_ids.sql
91131
│ └── sources.yml
92132
├── tests/
133+
├── dbt_project.yml
134+
└── requirements.txt
93135
```
94136

95137
### Step 3: Run dbt
@@ -127,7 +169,7 @@ for data model which can be further modified as required.
127169
#### Optional: Advanced Usage (Generator and Licensing)
128170

129171
This package was created using the dlt-dbt-generator by dlt-plus. For more information about dlt-plus, refer to the
130-
[dlt-plus documentation.](https://dlt-plus.netlify.app/docs/plus/intro/).To learn more about the dlt-dbt-generator,
172+
[dlt-plus documentation.](https://dlt-plus.netlify.app/docs/plus/intro/) To learn more about the dlt-dbt-generator,
131173
consult the [dlt-dbt-generator](https://dlthub.com/blog/dbt-gen) documentation.
132174

133175
> The dimensional modelling part of the package was created with a declarative code generator and suffers from

0 commit comments

Comments
 (0)