Sha256: c47e0ea1a3f7c4e505e525e6416df8ad6192c961e3af68061718862758b7a5f0
Contents?: true
Size: 724 Bytes
Versions: 4
Compression:
Stored size: 724 Bytes
Contents
module QDM # app/models/qdm/physical_exam_performed.rb class PhysicalExamPerformed < DataElement include Mongoid::Document embedded_in :patient field :authorDatetime, type: DateTime field :relevantPeriod, type: QDM::Interval field :reason, type: QDM::Code field :method, type: QDM::Code field :result field :anatomicalLocationSite, type: QDM::Code field :negationRationale, type: QDM::Code field :components, type: Array field :hqmfOid, type: String, default: '2.16.840.1.113883.10.20.28.3.62' field :qdmCategory, type: String, default: 'physical_exam' field :qdmStatus, type: String, default: 'performed' field :qdmVersion, type: String, default: '5.4' end end
Version data entries
4 entries across 4 versions & 1 rubygems