Class: FHIR::DSTU2::Person

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

Defined Under Namespace

Classes: Link

Constant Summary collapse

SEARCH_PARAMS =
['address', 'address-city', 'address-country', 'address-postalcode', 'address-state', 'address-use', 'birthdate', 'email', 'gender', 'identifier', 'name', 'patient', 'phone', 'phonetic', 'telecom', 'address', 'address-city', 'address-country', 'address-postalcode', 'address-state', 'address-use', 'birthdate', 'email', 'gender', 'identifier', 'link', 'name', 'organization', 'patient', 'phone', 'phonetic', 'practitioner', 'relatedperson', 'telecom']
METADATA =
{
  'id' => { 'type' => 'id', 'path' => 'Person.id', 'min' => 0, 'max' => 1 },
  'meta' => { 'type' => 'Meta', 'path' => 'Person.meta', 'min' => 0, 'max' => 1 },
  'implicitRules' => { 'type' => 'uri', 'path' => 'Person.implicitRules', 'min' => 0, 'max' => 1 },
  'language' => { 'type' => 'code', 'path' => 'Person.language', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://tools.ietf.org/html/bcp47' } },
  'text' => { 'type' => 'Narrative', 'path' => 'Person.text', 'min' => 0, 'max' => 1 },
  'contained' => { 'type' => 'Resource', 'path' => 'Person.contained', 'min' => 0, 'max' => Float::INFINITY },
  'extension' => { 'type' => 'Extension', 'path' => 'Person.extension', 'min' => 0, 'max' => Float::INFINITY },
  'modifierExtension' => { 'type' => 'Extension', 'path' => 'Person.modifierExtension', 'min' => 0, 'max' => Float::INFINITY },
  'identifier' => { 'type' => 'Identifier', 'path' => 'Person.identifier', 'min' => 0, 'max' => Float::INFINITY },
  'name' => { 'type' => 'HumanName', 'path' => 'Person.name', 'min' => 0, 'max' => Float::INFINITY },
  'telecom' => { 'type' => 'ContactPoint', 'path' => 'Person.telecom', 'min' => 0, 'max' => Float::INFINITY },
  'gender' => { 'valid_codes' => { 'http://hl7.org/fhir/administrative-gender' => ['male', 'female', 'other', 'unknown'] }, 'type' => 'code', 'path' => 'Person.gender', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://hl7.org/fhir/ValueSet/administrative-gender' } },
  'birthDate' => { 'type' => 'date', 'path' => 'Person.birthDate', 'min' => 0, 'max' => 1 },
  'address' => { 'type' => 'Address', 'path' => 'Person.address', 'min' => 0, 'max' => Float::INFINITY },
  'photo' => { 'type' => 'Attachment', 'path' => 'Person.photo', 'min' => 0, 'max' => 1 },
  'managingOrganization' => { 'type' => 'Reference', 'path' => 'Person.managingOrganization', 'min' => 0, 'max' => 1 },
  'active' => { 'type' => 'boolean', 'path' => 'Person.active', 'min' => 0, 'max' => 1 },
  'link' => { 'type' => 'Person::Link', 'path' => 'Person.link', 'min' => 0, '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, #each_element, #equals?, #hash, #initialize, #method_missing, #mismatch, #primitive?, #respond_to_missing?, #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

#activeObject

0-1 boolean



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

def active
  @active
end

#addressObject

0-* [ Address ]



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

def address
  @address
end

#birthDateObject

0-1 date



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

def birthDate
  @birthDate
end

#containedObject

0-* [ Resource ]



55
56
57
# File 'lib/fhir_dstu2_models/fhir/resources/Person.rb', line 55

def contained
  @contained
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#genderObject

0-1 code



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

def gender
  @gender
end

#idObject

0-1 id



50
51
52
# File 'lib/fhir_dstu2_models/fhir/resources/Person.rb', line 50

def id
  @id
end

#identifierObject

0-* [ Identifier ]



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

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



52
53
54
# File 'lib/fhir_dstu2_models/fhir/resources/Person.rb', line 52

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



53
54
55
# File 'lib/fhir_dstu2_models/fhir/resources/Person.rb', line 53

def language
  @language
end

0-* [ Person::Link ]



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

def link
  @link
end

#managingOrganizationObject

0-1 Reference()



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

def managingOrganization
  @managingOrganization
end

#metaObject

0-1 Meta



51
52
53
# File 'lib/fhir_dstu2_models/fhir/resources/Person.rb', line 51

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



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

def modifierExtension
  @modifierExtension
end

#nameObject

0-* [ HumanName ]



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

def name
  @name
end

#photoObject

0-1 Attachment



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

def photo
  @photo
end

#telecomObject

0-* [ ContactPoint ]



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

def telecom
  @telecom
end

#textObject

0-1 Narrative



54
55
56
# File 'lib/fhir_dstu2_models/fhir/resources/Person.rb', line 54

def text
  @text
end

Instance Method Details

#resourceTypeObject



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

def resourceType
  'Person'
end