Sha256: 627acb31d20cb85f6f8bae36a9f44d697ff88bc1ce68fb2f67a10b73822453d1

Contents?: true

Size: 722 Bytes

Versions: 6

Compression:

Stored size: 722 Bytes

Contents

module QDM
  # app/models/qdm/physical_exam_recommended.rb
  class PhysicalExamRecommended < DataElement
    include Mongoid::Document
    embedded_in :patient
    field :authorDatetime, type: DateTime
    field :reason, type: QDM::Code
    field :anatomicalLocationSite, type: QDM::Code
    field :negationRationale, type: QDM::Code
    embeds_many :requester, class_name: 'QDM::Entity'
    field :qdmTitle, type: String, default: 'Physical Exam, Recommended'
    field :hqmfOid, type: String, default: '2.16.840.1.113883.10.20.28.4.63'
    field :qdmCategory, type: String, default: 'physical_exam'
    field :qdmStatus, type: String, default: 'recommended'
    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_recommended.rb
cqm-models-4.1.1 app/models/qdm/physical_exam_recommended.rb
cqm-models-4.1.0 app/models/qdm/physical_exam_recommended.rb
cqm-models-4.0.2 app/models/qdm/physical_exam_recommended.rb
cqm-models-4.0.1 app/models/qdm/physical_exam_recommended.rb
cqm-models-4.0.0 app/models/qdm/physical_exam_recommended.rb