Sha256: ff19e30fecd557000056f0c7d0636df1c2fc0d4dd2ab0a774e04c32f70ca9ec5
Contents?: true
Size: 1.12 KB
Versions: 4
Compression:
Stored size: 1.12 KB
Contents
module QDM # Represents QDM datatype (parent class of all generated QDM datatype models) class DataElement include Mongoid::Document embedded_in :patient # Codes that describe this datatype. field :dataElementCodes, type: Array, default: [] # Optional description. field :description, type: String # Returns the attribute requested on the datatype. def get(attribute) send(attribute) if has_attribute?(attribute) end # Returns all of the codes on this datatype in a way that is typical # to the CQL execution engine. def code_system_pairs codes.collect do |code| { code: code.code, system: code.codeSystem } end end # Helper method that returns the codes on this data element as QDM::Code # objects. def codes dataElementCodes.collect { |code| QDM::Code.demongoize(code) } end # Return the Mongo id for this datatype. def id _id end # Include '_type' in any JSON output. This is necessary for deserialization. def to_json(options = nil) serializable_hash(methods: :_type).to_json(options) end end end
Version data entries
4 entries across 4 versions & 1 rubygems