Sha256: f016f2209713d947ed2f5e4d0dcbde6bbdf6da38af021db1406f58c15d8660bc
Contents?: true
Size: 879 Bytes
Versions: 11
Compression:
Stored size: 879 Bytes
Contents
module QDM # app/models/qdm/procedure_performed.rb class ProcedurePerformed < DataElement include Mongoid::Document embedded_in :patient field :authorDatetime, type: DateTime field :relevantPeriod, type: QDM::Interval field :reason, type: QDM::Code field :method, type: QDM::Code field :result field :status, type: QDM::Code field :anatomicalApproachSite, type: QDM::Code field :anatomicalLocationSite, type: QDM::Code field :ordinality, type: QDM::Code field :incisionDatetime, type: DateTime field :negationRationale, type: QDM::Code field :components, type: Array field :hqmfOid, type: String, default: '2.16.840.1.113883.10.20.28.3.67' field :category, type: String, default: 'procedure' 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