Field Details: coll_channel_type

Back to Fields
Basic Information
Field Name: coll_channel_type
Source Table: evolved_records
Version: 1
Expression Type: jinja
Output Type: TEXT
Status: Active
Created: 2025-10-16 04:31:29
Updated: 2025-10-28 05:40:20
Metadata
Display Name: Channel Type
Categories: COLLECTIONS
Group: Channel Metrics
Usage
Used in Summary: Yes
Used in Template: No

Description

No description available

Expression

            {% if raw_data.collection_channel is defined %}
                "{{ raw_data.collection_channel }}"
            {% elif raw_data.subcategory is defined %}
                {% if raw_data.subcategory.startswith("DIGITAL") %}
                    "DIGITAL"
                {% elif raw_data.subcategory.startswith("RURAL") or raw_data.subcategory.startswith("URBAN") %}
                    "AGENCY"
                {% else %}
                    "OTHER"
                {% endif %}
            {% else %}
                "UNKNOWN"
            {% endif %}