Sha256: f5cced1ab479706717ea92e48e9834b57b88ef59f10aac6719a86ac6f0e9aa7e
Contents?: true
Size: 801 Bytes
Versions: 11
Compression:
Stored size: 801 Bytes
Contents
module QDM # app/models/qdm/diagnostic_study_performed.rb class DiagnosticStudyPerformed < DataElement include Mongoid::Document embedded_in :patient field :authorDatetime, type: DateTime field :relevantPeriod, type: QDM::Interval field :reason, type: QDM::Code field :result field :resultDatetime, type: DateTime field :status, type: QDM::Code field :method, type: QDM::Code field :facilityLocation, 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.23' field :category, type: String, default: 'diagnostic_study' 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