Class: FHIR::DSTU2::Appointment

Inherits:
Model
  • Object
show all
Includes:
Hashable, Json, Xml
Defined in:
lib/fhir_dstu2_models/fhir/resources/Appointment.rb

Defined Under Namespace

Classes: Participant

Constant Summary collapse

SEARCH_PARAMS =
['actor', 'date', 'identifier', 'location', 'part-status', 'patient', 'practitioner', 'status', 'actor', 'appointment', 'identifier', 'location', 'part-status', 'patient', 'practitioner']
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'Appointment.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'Appointment.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'Appointment.implicitRules', 'min'=>0, 'max'=>1},
  'language' => {'type'=>'code', 'path'=>'Appointment.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://tools.ietf.org/html/bcp47'}},
  'text' => {'type'=>'Narrative', 'path'=>'Appointment.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'Appointment.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'Appointment.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'Appointment.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'Appointment.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'status' => {'valid_codes'=>{'http://hl7.org/fhir/appointmentstatus'=>['proposed', 'pending', 'booked', 'arrived', 'fulfilled', 'cancelled', 'noshow']}, 'type'=>'code', 'path'=>'Appointment.status', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/appointmentstatus'}},
  'type' => {'valid_codes'=>{'http://snomed.info/sct'=>['408467006', '394577000', '394578005', '421661004', '408462000', '394579002', '394804000', '394580004', '394803006', '408480009', '408454008', '394809005', '394592004', '394600006', '394601005', '394581000', '408478003', '394812008', '408444009', '394582007', '408475000', '410005002', '394583002', '419772000', '394584008', '408443003', '394802001', '394915009', '394814009', '394808002', '394811001', '408446006', '394586005', '394916005', '408472002', '394597005', '394598000', '394807007', '419192003', '408468001', '394593009', '394813003', '410001006', '394589003', '394591006', '394599008', '394649004', '408470005', '394585009', '394821009', '422191005', '394594003', '416304004', '418960008', '394882004', '394806003', '394588006', '408459003', '394607009', '419610006', '418058008', '420208008', '418652005', '418535003', '418862001', '419365004', '418002000', '419983000', '419170002', '419472004', '394539006', '420112009', '409968004', '394587001', '394913002', '408440000', '418112009', '419815003', '394914008', '408455009', '394602003', '408447002', '394810000', '408450004', '408476004', '408469009', '408466002', '408471009', '408464004', '408441001', '408465003', '394605001', '394608004', '408461007', '408460008', '394606000', '408449004', '418018006', '394604002', '394609007', '408474001', '394610002', '394611003', '408477008', '394801008', '408463005', '419321007', '394576009', '394590007', '409967009', '408448007', '419043006', '394612005', '394733009', '394732004']}, 'type'=>'CodeableConcept', 'path'=>'Appointment.type', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'preferred', 'uri'=>'http://hl7.org/fhir/ValueSet/c80-practice-codes'}},
  'reason' => {'valid_codes'=>{'http://snomed.info/sct'=>[]}, 'type'=>'CodeableConcept', 'path'=>'Appointment.reason', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/encounter-reason'}},
  'priority' => {'type'=>'unsignedInt', 'path'=>'Appointment.priority', 'min'=>0, 'max'=>1},
  'description' => {'type'=>'string', 'path'=>'Appointment.description', 'min'=>0, 'max'=>1},
  'start' => {'type'=>'instant', 'path'=>'Appointment.start', 'min'=>0, 'max'=>1},
  'end' => {'type'=>'instant', 'path'=>'Appointment.end', 'min'=>0, 'max'=>1},
  'minutesDuration' => {'type'=>'positiveInt', 'path'=>'Appointment.minutesDuration', 'min'=>0, 'max'=>1},
  'slot' => {'type'=>'Reference', 'path'=>'Appointment.slot', 'min'=>0, 'max'=>Float::INFINITY},
  'comment' => {'type'=>'string', 'path'=>'Appointment.comment', 'min'=>0, 'max'=>1},
  'participant' => {'type'=>'Appointment::Participant', 'path'=>'Appointment.participant', 'min'=>1, 'max'=>Float::INFINITY}
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Xml

from_xml, #to_xml, valid?, validate

Methods included from Deprecate

#deprecate

Methods included from Json

from_json, #to_json

Methods included from Hashable

#from_hash, #to_hash

Methods inherited from Model

#==, #attribute_mismatch, #compare_attribute, #equals?, #hash, #initialize, #method_missing, #mismatch, #primitive?, #to_reference, #valid?, #validate, #validate_profile

Constructor Details

This class inherits a constructor from FHIR::DSTU2::Model

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class FHIR::DSTU2::Model

Instance Attribute Details

#commentObject

0-1 string



74
75
76
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 74

def comment
  @comment
end

#containedObject

0-* [ Resource ]



61
62
63
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 61

def contained
  @contained
end

#descriptionObject

0-1 string



69
70
71
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 69

def description
  @description
end

#endObject

0-1 instant



71
72
73
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 71

def end
  @end
end

#extensionObject

0-* [ Extension ]



62
63
64
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 62

def extension
  @extension
end

#idObject

0-1 id



56
57
58
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 56

def id
  @id
end

#identifierObject

0-* [ Identifier ]



64
65
66
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 64

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



58
59
60
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 58

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



59
60
61
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 59

def language
  @language
end

#metaObject

0-1 Meta



57
58
59
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 57

def meta
  @meta
end

#minutesDurationObject

0-1 positiveInt



72
73
74
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 72

def minutesDuration
  @minutesDuration
end

#modifierExtensionObject

0-* [ Extension ]



63
64
65
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 63

def modifierExtension
  @modifierExtension
end

#participantObject

1-* [ Appointment::Participant ]



75
76
77
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 75

def participant
  @participant
end

#priorityObject

0-1 unsignedInt



68
69
70
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 68

def priority
  @priority
end

#reasonObject

0-1 CodeableConcept



67
68
69
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 67

def reason
  @reason
end

#slotObject

0-* [ Reference() ]



73
74
75
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 73

def slot
  @slot
end

#startObject

0-1 instant



70
71
72
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 70

def start
  @start
end

#statusObject

1-1 code



65
66
67
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 65

def status
  @status
end

#textObject

0-1 Narrative



60
61
62
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 60

def text
  @text
end

#typeObject

0-1 CodeableConcept



66
67
68
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 66

def type
  @type
end

Instance Method Details

#resourceTypeObject



77
78
79
# File 'lib/fhir_dstu2_models/fhir/resources/Appointment.rb', line 77

def resourceType
  'Appointment'
end