# View: streaming_data_details

**View Name:** streaming_data_details
**Table Source:** `Derived from: Awal.Awal_Finance, Awal_Finance.Awal_Streaming_Data_Lite`
**File Path:** `DOSC/Financial_Team/streaming_data_details/views/streaming_data_details.view.lkml`

## Overview

- **File Size:** 2122 bytes
- **Lines of Code:** 106
- **Dimensions:** 12
- **Measures:** 0
- **Dimension Groups:** 1
- **Filters:** 0

## Dimensions

| Name | Type |
|------|------|
| `client_ip_id` | string |
| `client_name` | string |
| `artist_id` | string |
| `artist_name` | string |
| `exploitation_format` | string |
| `exploitation_title` | string |
| `exploitation_version_id` | string |
| `recording_title` | string |
| `primary_genre` | string |
| `secondary_genre` | string |
| `royalty_period_end_month` | string |
| `total_streams` | number |

## Dimension Groups

| Name | Type |
|------|------|
| `original_release_date` | time |

## Derived Table

```sql
sql:
      SELECT
        CLIENT_IP_ID,
        CLIENT_NAME,
        ARTIST_ID,
        ARTIST_NAME,
        ORIGINAL_RELEASE_DATE,
        EXPLOITATION_FORMAT,
        EXPLOITATION_TITLE,
        EXPLOITATION_VERSION_ID,
        RECORDING_TITLE,
        PRIMARY_GENRE,
        SECONDARY_GENRE,
        ROYALTY_PERIOD_END_MONTH,
        TOTAL_STREAMS
      FROM
        AWAL.AWAL_FINANCE.awal_streaming_data_lite;;
```

