Sha256: 2b9d9f5d58dddb2bc2220d9070c0f20dd3254d95d081773e2ef2e949fb2b8822
Contents?: true
Size: 525 Bytes
Versions: 6
Compression:
Stored size: 525 Bytes
Contents
module QDM # app/models/qdm/patient_care_experience.rb class PatientCareExperience < DataElement include Mongoid::Document embedded_in :patient field :authorDatetime, type: DateTime embeds_many :recorder, class_name: 'QDM::Entity' field :qdmTitle, type: String, default: 'Patient Care Experience' field :hqmfOid, type: String, default: '2.16.840.1.113883.10.20.28.4.52' field :qdmCategory, type: String, default: 'care_experience' field :qdmVersion, type: String, default: '5.6' end end
Version data entries
6 entries across 6 versions & 1 rubygems