Sha256: 7c576047a3af4ffcc198b897234624c6e2fb9a285c89c0150786ed12184f2731

Contents?: true

Size: 481 Bytes

Versions: 3

Compression:

Stored size: 481 Bytes

Contents

class InsuranceProvider
  include Mongoid::Document
  
  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
  
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
health-data-standards-2.0.0 lib/health-data-standards/models/insurance_provider.rb
health-data-standards-1.0.1 lib/health-data-standards/models/insurance_provider.rb
health-data-standards-1.0.0 lib/health-data-standards/models/insurance_provider.rb