Sha256: 03d129d107d0cb02757a603ab5a1300be640d82176317641ba905bbfcfa665de
Contents?: true
Size: 800 Bytes
Versions: 11
Compression:
Stored size: 800 Bytes
Contents
module QDM # app/models/qdm/laboratory_test_performed.rb class LaboratoryTestPerformed < DataElement include Mongoid::Document embedded_in :patient field :authorDatetime, type: DateTime field :relevantPeriod, type: QDM::Interval field :status, type: QDM::Code field :method, type: QDM::Code field :result field :resultDatetime, type: DateTime field :reason, type: QDM::Code field :referenceRange, type: QDM::Interval field :negationRationale, type: QDM::Code field :components, type: Array field :hqmfOid, type: String, default: '2.16.840.1.113883.10.20.28.3.42' field :category, type: String, default: 'laboratory_test' field :qdmStatus, type: String, default: 'performed' field :qdmVersion, type: String, default: '5.3' end end
Version data entries
11 entries across 11 versions & 1 rubygems