Field Details: coll_is_special_case

Back to Fields
Basic Information
Field Name: coll_is_special_case
Source Table: evolved_records
Version: 1
Expression Type: jinja
Output Type: BOOLEAN
Status: Active
Created: 2025-10-16 04:31:29
Updated: 2025-10-16 04:31:29
Metadata
Display Name: Is Special Case
Categories: COLLECTIONS
Group: Special Cases
Usage
Used in Summary: Yes
Used in Template: No

Description

No description available

Expression

            {% if raw_data.transaction_type == "DEATH_CASE" %}
                true
            {% elif raw_data.transaction_type == "SETTLEMENT" %}
                true
            {% elif raw_data.subcategory == "RURAL_DEATH" %}
                true
            {% elif raw_data.subcategory == "URBAN_DEATH" %}
                true
            {% elif raw_data.subcategory == "RURAL_SETTLEMENT" %}
                true
            {% elif raw_data.subcategory == "URBAN_SETTLEMENT" %}
                true
            {% else %}
                false
            {% endif %}