Module: Ccd::HistoryAndPhysicalTemplate
- Included in:
- HistoryAndPhysical
- Defined in:
- lib/ccd/templates/history_and_physical_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 25 26 27 28 29 30 31 32 33 |
# File 'lib/ccd/templates/history_and_physical_template.rb', line 2 def self.included(base) base.class_eval do extend ::Ccd::Dsl # SHALL contain exactly one [1..1] templateId (CONF:8283) such that it constraint 'template_id', {:cardinality=>"1..1"} # SHALL contain exactly one [1..1] @root="2.16.840.1.113883.10.20.22.1.3" (CONF:10046). constraint 'template_id.root', {:cardinality=>"1..1", :value=>"2.16.840.1.113883.10.20.22.1.3"} # SHALL contain exactly one [1..1] code (CONF:17185). constraint 'code', {:cardinality=>"1..1"} # This code SHALL contain exactly one [1..1] @code, which SHALL be selected from ValueSet HPDocumentType 2.16.840.1.113883.1.11.20.22 DYNAMIC (CONF:17186). constraint 'code.code', {:cardinality=>"1..1"} # SHALL contain exactly one [1..1] componentOf (CONF:8338). constraint 'component_of', {:cardinality=>"1..1"} # This componentOf SHALL contain exactly one [1..1] encompassingEncounter (CONF:8339). constraint 'component_of.encompassing_encounter', {:cardinality=>"1..1"} # This encompassingEncounter SHALL contain exactly one [1..1] id (CONF:8340). constraint 'component_of.encompassing_encounter.id', {:cardinality=>"1..1"} # This encompassingEncounter SHALL contain exactly one [1..1] effectiveTime (CONF:8341). constraint 'component_of.encompassing_encounter.effective_time', {:cardinality=>"1..1"} # SHALL contain exactly one [1..1] component (CONF:8349). constraint 'component', {:cardinality=>"1..1"} end end |