Sha256: 4b56d88774872720fb732d614fc6822bc4553546a7fbe4d3da2ba9b6d9fe7f3a
Contents?: true
Size: 536 Bytes
Versions: 15
Compression:
Stored size: 536 Bytes
Contents
module QDM # Concept is an individual code within a ValueSet, including all of the associated metadata # such as code system, version, and display name class Concept include Mongoid::Document field :code, type: String field :code_system_name, type: String field :code_system_version, type: String field :display_name, type: String field :code_system, type: String scope :by_code_system_name, ->(cs) { where(code_system_name: cs) } scope :by_code_system, ->(cs) { where(code_system: cs) } end end
Version data entries
15 entries across 15 versions & 1 rubygems