Sha256: 38be98cee8f33e4da2c8676c9c4741e7d42f511b5a5a9692cfdfc0884d5efafa

Contents?: true

Size: 927 Bytes

Versions: 6

Compression:

Stored size: 927 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 :relevantDatetime, 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
    embeds_many :performer, class_name: 'QDM::Entity'
    field :relatedTo, type: Array
    field :qdmTitle, type: String, default: 'Physical Exam, Performed'
    field :hqmfOid, type: String, default: '2.16.840.1.113883.10.20.28.4.62'
    field :qdmCategory, type: String, default: 'physical_exam'
    field :qdmStatus, type: String, default: 'performed'
    field :qdmVersion, type: String, default: '5.6'
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cqm-models-4.2.0 app/models/qdm/physical_exam_performed.rb
cqm-models-4.1.1 app/models/qdm/physical_exam_performed.rb
cqm-models-4.1.0 app/models/qdm/physical_exam_performed.rb
cqm-models-4.0.2 app/models/qdm/physical_exam_performed.rb
cqm-models-4.0.1 app/models/qdm/physical_exam_performed.rb
cqm-models-4.0.0 app/models/qdm/physical_exam_performed.rb