# Data Lineage & Dependencies

Generated on: 2026-01-09 10:45:57

This document shows the relationships and dependencies between models, views, and data sources.

## Overview

- **Total Models:** 1
- **Total Views:** 0
- **Derived Views:** 0
- **Direct Table Views:** 0

## Model Dependencies

### Models and Their Views

## View Dependencies

### Views by Data Source

#### Direct Database Tables
Views that directly reference database tables:

#### Derived Tables
Views with custom SQL (complex transformations):

Total: 0 views

| View | Lines of Code | Source Tables |
|------|---------------|---------------|


## Explore Relationships

### Explores and Their Dependencies

## Impact Analysis Guide

### Making Changes Safely

1. **Before changing a database table:**
   - Check "Views by Data Source" section above
   - Identify all views that use the table
   - Review explores that depend on those views

2. **Before modifying a view:**
   - Check which models include the view
   - Review explores that use the view as base
   - Consider downstream reporting impact

3. **Before changing a model:**
   - Review all explores in the model
   - Check business usage of those explores
   - Coordinate with report consumers

### Complexity Indicators

- **High Line Count Views**: Complex business logic, may need optimization
- **Many Source Tables**: Complex joins, potential performance impact
- **Multiple Dependencies**: Changes have wide impact, need careful testing

