Class: FHIR::RelatedPerson

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

Constant Summary collapse

SEARCH_PARAMS =
["active", "address", "address-city", "address-country", "address-postalcode", "address-state", "address-use", "birthdate", "email", "gender", "identifier", "name", "patient", "phone", "phonetic", "telecom"]
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'RelatedPerson.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'RelatedPerson.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'RelatedPerson.implicitRules', 'min'=>0, 'max'=>1},
  'language' => {'type'=>'code', 'path'=>'RelatedPerson.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'text' => {'type'=>'Narrative', 'path'=>'RelatedPerson.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'RelatedPerson.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'RelatedPerson.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'RelatedPerson.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'RelatedPerson.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'active' => {'type'=>'boolean', 'path'=>'RelatedPerson.active', 'min'=>0, 'max'=>1},
  'patient' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Patient'], 'type'=>'Reference', 'path'=>'RelatedPerson.patient', 'min'=>1, 'max'=>1},
  'relationship' => {'valid_codes'=>{'http://hl7.org/fhir/v2/0131'=>['C', 'E', 'F', 'I', 'N', 'O', 'S', 'U'], 'http://hl7.org/fhir/v3/RoleCode'=>['_PersonalRelationshipRoleType', 'FAMMEMB', 'CHILD', 'CHLDADOPT', 'DAUADOPT', 'SONADOPT', 'CHLDFOST', 'DAUFOST', 'SONFOST', 'DAUC', 'DAU', 'STPDAU', 'NCHILD', 'SON', 'SONC', 'STPSON', 'STPCHLD', 'EXT', 'AUNT', 'MAUNT', 'PAUNT', 'COUSN', 'MCOUSN', 'PCOUSN', 'GGRPRN', 'GGRFTH', 'MGGRFTH', 'PGGRFTH', 'GGRMTH', 'MGGRMTH', 'PGGRMTH', 'MGGRPRN', 'PGGRPRN', 'GRNDCHILD', 'GRNDDAU', 'GRNDSON', 'GRPRN', 'GRFTH', 'MGRFTH', 'PGRFTH', 'GRMTH', 'MGRMTH', 'PGRMTH', 'MGRPRN', 'PGRPRN', 'INLAW', 'CHLDINLAW', 'DAUINLAW', 'SONINLAW', 'PRNINLAW', 'FTHINLAW', 'MTHINLAW', 'SIBINLAW', 'BROINLAW', 'SISINLAW', 'NIENEPH', 'NEPHEW', 'NIECE', 'UNCLE', 'MUNCLE', 'PUNCLE', 'PRN', 'ADOPTP', 'ADOPTF', 'ADOPTM', 'FTH', 'FTHFOST', 'NFTH', 'NFTHF', 'STPFTH', 'MTH', 'GESTM', 'MTHFOST', 'NMTH', 'NMTHF', 'STPMTH', 'NPRN', 'PRNFOST', 'STPPRN', 'SIB', 'BRO', 'HBRO', 'NBRO', 'TWINBRO', 'FTWINBRO', 'ITWINBRO', 'STPBRO', 'HSIB', 'HSIS', 'NSIB', 'NSIS', 'TWINSIS', 'FTWINSIS', 'ITWINSIS', 'TWIN', 'FTWIN', 'ITWIN', 'SIS', 'STPSIS', 'STPSIB', 'SIGOTHR', 'DOMPART', 'FMRSPS', 'SPS', 'HUSB', 'WIFE', 'FRND', 'NBOR', 'ONESELF', 'ROOM']}, 'type'=>'CodeableConcept', 'path'=>'RelatedPerson.relationship', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/relatedperson-relationshiptype'}},
  'name' => {'type'=>'HumanName', 'path'=>'RelatedPerson.name', 'min'=>0, 'max'=>Float::INFINITY},
  'telecom' => {'type'=>'ContactPoint', 'path'=>'RelatedPerson.telecom', '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'=>'RelatedPerson.gender', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/administrative-gender'}},
  'birthDate' => {'type'=>'date', 'path'=>'RelatedPerson.birthDate', 'min'=>0, 'max'=>1},
  'address' => {'type'=>'Address', 'path'=>'RelatedPerson.address', 'min'=>0, 'max'=>Float::INFINITY},
  'photo' => {'type'=>'Attachment', 'path'=>'RelatedPerson.photo', 'min'=>0, 'max'=>Float::INFINITY},
  'period' => {'type'=>'Period', 'path'=>'RelatedPerson.period', 'min'=>0, 'max'=>1}
}

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



39
40
41
# File 'lib/fhir/resources/RelatedPerson.rb', line 39

def active
  @active
end

#addressObject

0-* [ Address ]



46
47
48
# File 'lib/fhir/resources/RelatedPerson.rb', line 46

def address
  @address
end

#birthDateObject

0-1 date



45
46
47
# File 'lib/fhir/resources/RelatedPerson.rb', line 45

def birthDate
  @birthDate
end

#containedObject

0-* [ Resource ]



35
36
37
# File 'lib/fhir/resources/RelatedPerson.rb', line 35

def contained
  @contained
end

#extensionObject

0-* [ Extension ]



36
37
38
# File 'lib/fhir/resources/RelatedPerson.rb', line 36

def extension
  @extension
end

#genderObject

0-1 code



44
45
46
# File 'lib/fhir/resources/RelatedPerson.rb', line 44

def gender
  @gender
end

#idObject

0-1 id



30
31
32
# File 'lib/fhir/resources/RelatedPerson.rb', line 30

def id
  @id
end

#identifierObject

0-* [ Identifier ]



38
39
40
# File 'lib/fhir/resources/RelatedPerson.rb', line 38

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



32
33
34
# File 'lib/fhir/resources/RelatedPerson.rb', line 32

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



33
34
35
# File 'lib/fhir/resources/RelatedPerson.rb', line 33

def language
  @language
end

#metaObject

0-1 Meta



31
32
33
# File 'lib/fhir/resources/RelatedPerson.rb', line 31

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



37
38
39
# File 'lib/fhir/resources/RelatedPerson.rb', line 37

def modifierExtension
  @modifierExtension
end

#nameObject

0-* [ HumanName ]



42
43
44
# File 'lib/fhir/resources/RelatedPerson.rb', line 42

def name
  @name
end

#patientObject

1-1 Reference(Patient)



40
41
42
# File 'lib/fhir/resources/RelatedPerson.rb', line 40

def patient
  @patient
end

#periodObject

0-1 Period



48
49
50
# File 'lib/fhir/resources/RelatedPerson.rb', line 48

def period
  @period
end

#photoObject

0-* [ Attachment ]



47
48
49
# File 'lib/fhir/resources/RelatedPerson.rb', line 47

def photo
  @photo
end

#relationshipObject

0-1 CodeableConcept



41
42
43
# File 'lib/fhir/resources/RelatedPerson.rb', line 41

def relationship
  @relationship
end

#telecomObject

0-* [ ContactPoint ]



43
44
45
# File 'lib/fhir/resources/RelatedPerson.rb', line 43

def telecom
  @telecom
end

#textObject

0-1 Narrative



34
35
36
# File 'lib/fhir/resources/RelatedPerson.rb', line 34

def text
  @text
end

Instance Method Details

#resourceTypeObject



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

def resourceType
  'RelatedPerson'
end