Sha256: 3c76542ad653a8ec96ebc02eb6a51485b94719a593219409ffaf672a42c538ed

Contents?: true

Size: 583 Bytes

Versions: 6

Compression:

Stored size: 583 Bytes

Contents

class InsuranceProvider
  include Mongoid::Document
  include ThingWithCodes
  
  embedded_in :record, class_name: 'Record'
  embeds_one :payer, class_name: "Organization"
  embeds_many :guarantors, class_name: "Guarantor"
  embeds_one :subscriber, class_name: "Person"
  
  field :type, type: String
  field :time, type: Integer
  field :start_time, type: Integer
  field :end_time, type: Integer
  field :member_id, type: String
  field :relationship, type: Hash
  field :financial_responsibility_type, type: Hash
  field :name, type: String
  field :free_text, type: String
  
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
health-data-standards-3.1.1 lib/health-data-standards/models/insurance_provider.rb
health-data-standards-3.1.0 lib/health-data-standards/models/insurance_provider.rb
health-data-standards-3.0.6 lib/health-data-standards/models/insurance_provider.rb
health-data-standards-3.0.5 lib/health-data-standards/models/insurance_provider.rb
health-data-standards-3.0.4 lib/health-data-standards/models/insurance_provider.rb
health-data-standards-3.0.3 lib/health-data-standards/models/insurance_provider.rb