Module: Ccd::ProgressNoteTemplate

Included in:
ProgressNote
Defined in:
lib/ccd/templates/progress_note_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
34
35
36
37
38
39
# File 'lib/ccd/templates/progress_note_template.rb', line 2

def self.included(base)
  base.class_eval do
    extend ::Ccd::Dsl
    
    # SHALL contain exactly one [1..1] templateId (CONF:7588) 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.9" (CONF:10052).
    constraint 'template_id.root', {:cardinality=>"1..1", :value=>"2.16.840.1.113883.10.20.22.1.9"}
    
    # SHALL contain exactly one [1..1] code (CONF:17189).
    constraint 'code', {:cardinality=>"1..1"}
    
    # This code SHALL contain exactly one [1..1] @code, which SHALL be selected from ValueSet ProgressNoteDocumentTypeCode 2.16.840.1.113883.11.20.8.1 DYNAMIC (CONF:17190).
    constraint 'code.code', {:cardinality=>"1..1"}
    
    # SHALL contain exactly one [1..1] componentOf (CONF:7595).
    constraint 'component_of', {:cardinality=>"1..1"}
    
    # This componentOf SHALL contain exactly one [1..1] encompassingEncounter (CONF:7596).
    constraint 'component_of.encompassing_encounter', {:cardinality=>"1..1"}
    
    # This encompassingEncounter SHALL contain at least one [1..*] id (CONF:7597).
    constraint 'component_of.encompassing_encounter.id', {:cardinality=>"1..*"}
    
    # This encompassingEncounter SHALL contain exactly one [1..1] effectiveTime (CONF:7598).
    constraint 'component_of.encompassing_encounter.effective_time', {:cardinality=>"1..1"}
    
    # This effectiveTime SHALL contain exactly one [1..1] low (CONF:7599).
    constraint 'component_of.encompassing_encounter.effective_time.low', {:cardinality=>"1..1"}
    
    # This encompassingEncounter SHALL contain exactly one [1..1] location/healthCareFacility/id (CONF:7611).
    constraint 'component_of.encompassing_encounter.location.health_care_facility.id', {:cardinality=>"1..1"}
    
    # SHALL contain exactly one [1..1] component (CONF:9591).
    constraint 'component', {:cardinality=>"1..1"}
  end
end