# Data Lineage & Dependencies

Generated on: 2026-04-09 14:54:14

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

## Overview

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

## Model Dependencies

### Models and Their Views

#### content_models
- **Includes:** 1 views
- **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: 1 views

| View | Lines of Code | Source Tables |
|------|---------------|---------------|
| `content_review` | 568 |  Art_Relations_Prod_Art_Relations.Project, Art_... |


## Explore Relationships

### Explores and Their Dependencies

#### Model: content_models

**content_review** (Content)
- Base View: `content_review`
- View Type: Derived Table
- Data Source: Derived from: Art_Relations_Prod_Art_Relations.Project, Art_Relations_Prod_Art_R...

## 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

