Sha256: 10d37e4c78da65650636ec7323ec5e78607238299f73b04ea05fef276d013d08
Contents?: true
Size: 890 Bytes
Versions: 3
Compression:
Stored size: 890 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::FacilityLocation field :negationRationale, type: QDM::Code field :components, type: Array field :qdmTitle, type: String, default: 'Diagnostic Study, Performed' field :hqmfOid, type: String, default: '2.16.840.1.113883.10.20.28.4.23' field :qdmCategory, type: String, default: 'diagnostic_study' field :qdmStatus, type: String, default: 'performed' field :qdmVersion, type: String, default: '5.4' end end
Version data entries
3 entries across 3 versions & 1 rubygems