Class: EMIS::Models::DentalIndicator

Inherits:
Object
  • Object
show all
Defined in:
lib/emis/models/dental_indicator.rb

Overview

EMIS Dental Indicator data

Instance Attribute Summary collapse

Instance Attribute Details

#dental_indicatorString

Returns This data element indicates whether the member was provided a complete dental examination and all appropriate dental services and treatment within 90 days prior to separating from Active Duty. The data is received daily from DD 214 data feeds. This field is Box 17 on DD Form 214, Aug 2009 version. The data is required under the iEHR program and electronic DD214 initiative. It will be made optionally available to customers requiring this element as part of a DD214 electronic inquiry.

N => No
Y => Yes
Z => Unknown.

Returns:

  • (String)

    This data element indicates whether the member was provided a complete dental examination and all appropriate dental services and treatment within 90 days prior to separating from Active Duty. The data is received daily from DD 214 data feeds. This field is Box 17 on DD Form 214, Aug 2009 version. The data is required under the iEHR program and electronic DD214 initiative. It will be made optionally available to customers requiring this element as part of a DD214 electronic inquiry.

    N => No
    Y => Yes
    Z => Unknown
    


23
24
25
26
27
28
# File 'lib/emis/models/dental_indicator.rb', line 23

class DentalIndicator
  include Virtus.model

  attribute :separation_date, Date
  attribute :dental_indicator, String
end

#separation_dateDate

Returns date on which a member separated from a specific service and component. The data is received daily from DD 214 data feeds. The data is required under the iEHR program and electronic DD214 initiative. It will be made optionally available to customers requiring this element as part of a DD214 electronic inquiry.

Returns:

  • (Date)

    date on which a member separated from a specific service and component. The data is received daily from DD 214 data feeds. The data is required under the iEHR program and electronic DD214 initiative. It will be made optionally available to customers requiring this element as part of a DD214 electronic inquiry.



23
24
25
26
27
28
# File 'lib/emis/models/dental_indicator.rb', line 23

class DentalIndicator
  include Virtus.model

  attribute :separation_date, Date
  attribute :dental_indicator, String
end