Module: Ccd::DischargeDietSectionTemplate
- Included in:
- DischargeDietSection
- Defined in:
- lib/ccd/templates/discharge_diet_section_template.rb
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/ccd/templates/discharge_diet_section_template.rb', line 2 def self.included(base) base.class_eval do extend ::Ccd::Dsl # SHALL contain exactly one [1..1] templateId (CONF:7975) such that it constraint 'template_id', {:cardinality=>"1..1"} # SHALL contain exactly one [1..1] @root="1.3.6.1.4.1.19376.1.5.3.1.3.33" (CONF:10455). constraint 'template_id.root', {:cardinality=>"1..1", :value=>"1.3.6.1.4.1.19376.1.5.3.1.3.33"} # SHALL contain exactly one [1..1] code (CONF:15459). constraint 'code', {:cardinality=>"1..1", :value=>{:code=>"42344-2", :display_name=>"Discharge Diet", :code_system=>"2.16.840.1.113883.6.1"}} # SHALL contain exactly one [1..1] title (CONF:7977). constraint 'title', {:cardinality=>"1..1"} # SHALL contain exactly one [1..1] text (CONF:7978). constraint 'text', {:cardinality=>"1..1"} end end |