Class: FHIR::Group

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

Defined Under Namespace

Classes: Characteristic, Member

Constant Summary collapse

SEARCH_PARAMS =
["actual", "characteristic", "code", "exclude", "identifier", "member", "type", "value"]
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'Group.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'Group.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'Group.implicitRules', 'min'=>0, 'max'=>1},
  'language' => {'type'=>'code', 'path'=>'Group.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'text' => {'type'=>'Narrative', 'path'=>'Group.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'Group.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'Group.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'Group.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'Group.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'type' => {'valid_codes'=>{'http://hl7.org/fhir/group-type'=>['person', 'animal', 'practitioner', 'device', 'medication', 'substance', 'person', 'animal', 'practitioner', 'device', 'medication', 'substance']}, 'type'=>'code', 'path'=>'Group.type', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/group-type'}},
  'actual' => {'type'=>'boolean', 'path'=>'Group.actual', 'min'=>1, 'max'=>1},
  'active' => {'type'=>'boolean', 'path'=>'Group.active', 'min'=>0, 'max'=>1},
  'code' => {'type'=>'CodeableConcept', 'path'=>'Group.code', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>nil}},
  'name' => {'type'=>'string', 'path'=>'Group.name', 'min'=>0, 'max'=>1},
  'quantity' => {'type'=>'unsignedInt', 'path'=>'Group.quantity', 'min'=>0, 'max'=>1},
  'characteristic' => {'type'=>'Group::Characteristic', 'path'=>'Group.characteristic', 'min'=>0, 'max'=>Float::INFINITY},
  'member' => {'type'=>'Group::Member', 'path'=>'Group.member', 'min'=>0, 'max'=>Float::INFINITY}
}

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



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

def active
  @active
end

#actualObject

1-1 boolean



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

def actual
  @actual
end

#characteristicObject

0-* [ Group::Characteristic ]



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

def characteristic
  @characteristic
end

#codeObject

0-1 CodeableConcept



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

def code
  @code
end

#containedObject

0-* [ Resource ]



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

def contained
  @contained
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#idObject

0-1 id



83
84
85
# File 'lib/fhir/resources/Group.rb', line 83

def id
  @id
end

#identifierObject

0-* [ Identifier ]



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

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



85
86
87
# File 'lib/fhir/resources/Group.rb', line 85

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



86
87
88
# File 'lib/fhir/resources/Group.rb', line 86

def language
  @language
end

#memberObject

0-* [ Group::Member ]



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

def member
  @member
end

#metaObject

0-1 Meta



84
85
86
# File 'lib/fhir/resources/Group.rb', line 84

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



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

def modifierExtension
  @modifierExtension
end

#nameObject

0-1 string



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

def name
  @name
end

#quantityObject

0-1 unsignedInt



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

def quantity
  @quantity
end

#textObject

0-1 Narrative



87
88
89
# File 'lib/fhir/resources/Group.rb', line 87

def text
  @text
end

#typeObject

1-1 code



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

def type
  @type
end

Instance Method Details

#resourceTypeObject



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

def resourceType
  'Group'
end