Sha256: 6bef4e2ecfc897fdabc48b3e27215b8f8f1581932364fc3dd7698314bb714232

Contents?: true

Size: 1.32 KB

Versions: 4

Compression:

Stored size: 1.32 KB

Contents

module Experian
  class DataDictionary

    # Length Of Residence
    def self.en_0119_column_name
      'Length Of Residence'
    end

    def self.en_0119_value_description(key); ''; end

    def self.en_0119_description
      'Length of Residence (LOR) is the length of time a Living Unit has resided at their current address. A primary source of LOR is public source white page compilation initiating a counter showing the first time a name and number appear in the directory. LOR information is also received from proprietary sources and through updates of our source files against the USPS National Change of Address* file. For all sources, LOR data is aged over time.\n\nWhen there is insufficient data to match a customer\'s record to our Enrichment master for Length of Residence, a median LOR based on the LOR\'s 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 LOR is based on the LOR\'s assigned to other records in that ZIP region.\n\nThe median level data applied to records for this element can be identified through the Enrichment Mandatory Append - Total Enrichment Match Type indicator (E).'
    end

    def self.en_0119(key)
      return nil unless /[0-9]+/ =~ key
      key.to_i == 0  ? 'Less than a year' : [key.to_i, 'years'].join(' ')
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
experian-data-dictionary-1.4.4 lib/element_numbers/0100/en_0119.rb
experian-data-dictionary-1.4.3 lib/element_numbers/en_0119.rb
experian-data-dictionary-1.4.2 lib/element_numbers/en_0119.rb
experian-data-dictionary-1.4.1 lib/element_numbers/en_0119.rb