Sha256: 59b23ab683fc3af650e2a7e9f9366550365f0f70059bf7c134fb42d8ea5d0912

Contents?: true

Size: 1.4 KB

Versions: 3

Compression:

Stored size: 1.4 KB

Contents

module Experian
  class DataDictionary

    def self.en_0174_column_name
      'Presence of Children Age Ranges'
    end

    def self.en_0174_description
      'Known & Inferred Children\'s Age Ranges are a combination of known children\'s age ranges, and where not available, an Experian model which predicts the likelihood that a child within the age group is present in the living unit. When there is insufficient data to match a customer record to our Enrichment master for Inferred Children\'s Age Range, a median Inferred Children\'s Age Range based on the Known & Inferred Children\'s Age Ranges assigned to other living units in the same ZIP+4 area is used. In the rare case that the ZIP+4 is not on the record, median Children\'s Age Range is based on the Known & Inferred children\'s age ranges assigned to other records in that ZIP region. The median level data applied to records for this element can be identified through the Enrichment Mandatory Append - Total Enrichment Match Type indicator (G).'
    end

    def self.en_0174(key)
      values = {
        '1Y' => 'Confirmed Presence of Children',
        '5Y' => 'Inferred Presence of Children',
        '5N' => 'Inferred No Children Present',
        '5U' => 'Unknown',
        '00' => 'Deceased and Child Only - primary decision maker is coded as deceased or no adult (18+) in household.'
      }
      key.empty? ? 'Unknown' : values[key]
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4 lib/element_numbers/en_0174.rb
experian-data-dictionary-1.3 lib/element_numbers/en_0174.rb
experian-data-dictionary-1.2 lib/element_numbers/en_0174.rb