Module: Ccd::HospitalDischargeInstructionsSectioTemplate
- Included in:
- HospitalDischargeInstructionsSectio
- Defined in:
- lib/ccd/templates/hospital_discharge_instructions_sectio_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 22 23 24 |
# File 'lib/ccd/templates/hospital_discharge_instructions_sectio_template.rb', line 2 def self.included(base) base.class_eval do extend ::Ccd::Dsl # SHALL contain exactly one [1..1] templateId (CONF:9919) such that it constraint 'template_id', {:cardinality=>"1..1"} # SHALL contain exactly one [1..1] @root="2.16.840.1.113883.10.20.22.2.41" (CONF:10395). constraint 'template_id.root', {:cardinality=>"1..1", :value=>"2.16.840.1.113883.10.20.22.2.41"} # SHALL contain exactly one [1..1] code (CONF:15357). constraint 'code', {:cardinality=>"1..1", :value=>{:code=>"8653-8", :display_name=>"Hospital Discharge Instructions"}} # This code SHALL contain exactly one [1..1] @codeSystem="2.16.840.1.113883.6.1" (CodeSystem: LOINC 2.16.840.1.113883.6.1) (CONF:26481). constraint 'code.code_system', {:cardinality=>"1..1", :value=>"2.16.840.1.113883.6.1"} # SHALL contain exactly one [1..1] title (CONF:9921). constraint 'title', {:cardinality=>"1..1"} # SHALL contain exactly one [1..1] text (CONF:9922). constraint 'text', {:cardinality=>"1..1"} end end |