Class: FHIR::Practitioner

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

Defined Under Namespace

Classes: Qualification, Role

Constant Summary collapse

SEARCH_PARAMS =
["active", "address", "address-city", "address-country", "address-postalcode", "address-state", "address-use", "communication", "email", "family", "gender", "given", "identifier", "location", "name", "organization", "phone", "phonetic", "role", "specialty", "telecom"]
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'Practitioner.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'Practitioner.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'Practitioner.implicitRules', 'min'=>0, 'max'=>1},
  'language' => {'type'=>'code', 'path'=>'Practitioner.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'text' => {'type'=>'Narrative', 'path'=>'Practitioner.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'Practitioner.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'Practitioner.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'Practitioner.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'Practitioner.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'active' => {'type'=>'boolean', 'path'=>'Practitioner.active', 'min'=>0, 'max'=>1},
  'name' => {'type'=>'HumanName', 'path'=>'Practitioner.name', 'min'=>0, 'max'=>Float::INFINITY},
  'telecom' => {'type'=>'ContactPoint', 'path'=>'Practitioner.telecom', 'min'=>0, 'max'=>Float::INFINITY},
  'address' => {'type'=>'Address', 'path'=>'Practitioner.address', 'min'=>0, 'max'=>Float::INFINITY},
  'gender' => {'valid_codes'=>{'http://hl7.org/fhir/administrative-gender'=>['male', 'female', 'other', 'unknown', 'male', 'female', 'other', 'unknown']}, 'type'=>'code', 'path'=>'Practitioner.gender', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/administrative-gender'}},
  'birthDate' => {'type'=>'date', 'path'=>'Practitioner.birthDate', 'min'=>0, 'max'=>1},
  'photo' => {'type'=>'Attachment', 'path'=>'Practitioner.photo', 'min'=>0, 'max'=>Float::INFINITY},
  'role' => {'type'=>'Practitioner::Role', 'path'=>'Practitioner.role', 'min'=>0, 'max'=>Float::INFINITY},
  'qualification' => {'type'=>'Practitioner::Qualification', 'path'=>'Practitioner.qualification', 'min'=>0, 'max'=>Float::INFINITY},
  'communication' => {'type'=>'CodeableConcept', 'path'=>'Practitioner.communication', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}}
}

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Xml

from_xml, is_valid?, #to_xml, validate

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?, #initialize, #is_valid?, #method_missing, #mismatch, #to_reference, #validate, #validate_profile

Constructor Details

This class inherits a constructor from FHIR::Model

Dynamic Method Handling

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

Instance Attribute Details

#activeObject

0-1 boolean



97
98
99
# File 'lib/fhir/resources/Practitioner.rb', line 97

def active
  @active
end

#addressObject

0-* [ Address ]



100
101
102
# File 'lib/fhir/resources/Practitioner.rb', line 100

def address
  @address
end

#birthDateObject

0-1 date



102
103
104
# File 'lib/fhir/resources/Practitioner.rb', line 102

def birthDate
  @birthDate
end

#communicationObject

0-* [ CodeableConcept ]



106
107
108
# File 'lib/fhir/resources/Practitioner.rb', line 106

def communication
  @communication
end

#containedObject

0-* [ Resource ]



93
94
95
# File 'lib/fhir/resources/Practitioner.rb', line 93

def contained
  @contained
end

#extensionObject

0-* [ Extension ]



94
95
96
# File 'lib/fhir/resources/Practitioner.rb', line 94

def extension
  @extension
end

#genderObject

0-1 code



101
102
103
# File 'lib/fhir/resources/Practitioner.rb', line 101

def gender
  @gender
end

#idObject

0-1 id



88
89
90
# File 'lib/fhir/resources/Practitioner.rb', line 88

def id
  @id
end

#identifierObject

0-* [ Identifier ]



96
97
98
# File 'lib/fhir/resources/Practitioner.rb', line 96

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



90
91
92
# File 'lib/fhir/resources/Practitioner.rb', line 90

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



91
92
93
# File 'lib/fhir/resources/Practitioner.rb', line 91

def language
  @language
end

#metaObject

0-1 Meta



89
90
91
# File 'lib/fhir/resources/Practitioner.rb', line 89

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



95
96
97
# File 'lib/fhir/resources/Practitioner.rb', line 95

def modifierExtension
  @modifierExtension
end

#nameObject

0-* [ HumanName ]



98
99
100
# File 'lib/fhir/resources/Practitioner.rb', line 98

def name
  @name
end

#photoObject

0-* [ Attachment ]



103
104
105
# File 'lib/fhir/resources/Practitioner.rb', line 103

def photo
  @photo
end

#qualificationObject

0-* [ Practitioner::Qualification ]



105
106
107
# File 'lib/fhir/resources/Practitioner.rb', line 105

def qualification
  @qualification
end

#roleObject

0-* [ Practitioner::Role ]



104
105
106
# File 'lib/fhir/resources/Practitioner.rb', line 104

def role
  @role
end

#telecomObject

0-* [ ContactPoint ]



99
100
101
# File 'lib/fhir/resources/Practitioner.rb', line 99

def telecom
  @telecom
end

#textObject

0-1 Narrative



92
93
94
# File 'lib/fhir/resources/Practitioner.rb', line 92

def text
  @text
end

Instance Method Details

#resourceTypeObject



108
109
110
# File 'lib/fhir/resources/Practitioner.rb', line 108

def resourceType
  'Practitioner'
end