Class: FHIR::Bundle

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

Defined Under Namespace

Classes: Entry, Link

Constant Summary collapse

SEARCH_PARAMS =
["composition", "message", "type"]
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'Bundle.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'Bundle.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'Bundle.implicitRules', 'min'=>0, 'max'=>1},
  'language' => {'type'=>'code', 'path'=>'Bundle.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'type' => {'valid_codes'=>{'http://hl7.org/fhir/bundle-type'=>['document', 'message', 'transaction', 'transaction-response', 'batch', 'batch-response', 'history', 'searchset', 'collection', 'document', 'message', 'transaction', 'transaction-response', 'batch', 'batch-response', 'history', 'searchset', 'collection']}, 'type'=>'code', 'path'=>'Bundle.type', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/bundle-type'}},
  'total' => {'type'=>'unsignedInt', 'path'=>'Bundle.total', 'min'=>0, 'max'=>1},
  'link' => {'type'=>'Bundle::Link', 'path'=>'Bundle.link', 'min'=>0, 'max'=>Float::INFINITY},
  'entry' => {'type'=>'Bundle::Entry', 'path'=>'Bundle.entry', 'min'=>0, 'max'=>Float::INFINITY},
  'signature' => {'type'=>'Signature', 'path'=>'Bundle.signature', '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

#entryObject

0-* [ Bundle::Entry ]



149
150
151
# File 'lib/fhir/resources/Bundle.rb', line 149

def entry
  @entry
end

#idObject

0-1 id



142
143
144
# File 'lib/fhir/resources/Bundle.rb', line 142

def id
  @id
end

#implicitRulesObject

0-1 uri



144
145
146
# File 'lib/fhir/resources/Bundle.rb', line 144

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



145
146
147
# File 'lib/fhir/resources/Bundle.rb', line 145

def language
  @language
end

0-* [ Bundle::Link ]



148
149
150
# File 'lib/fhir/resources/Bundle.rb', line 148

def link
  @link
end

#metaObject

0-1 Meta



143
144
145
# File 'lib/fhir/resources/Bundle.rb', line 143

def meta
  @meta
end

#signatureObject

0-1 Signature



150
151
152
# File 'lib/fhir/resources/Bundle.rb', line 150

def signature
  @signature
end

#totalObject

0-1 unsignedInt



147
148
149
# File 'lib/fhir/resources/Bundle.rb', line 147

def total
  @total
end

#typeObject

1-1 code



146
147
148
# File 'lib/fhir/resources/Bundle.rb', line 146

def type
  @type
end

Instance Method Details

#resourceTypeObject



152
153
154
# File 'lib/fhir/resources/Bundle.rb', line 152

def resourceType
  'Bundle'
end