Class: FHIR::Bundle

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

Defined Under Namespace

Classes: Entry, Link

Constant Summary collapse

SEARCH_PARAMS =
['composition', 'identifier', 'message', 'timestamp', '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' => {'valid_codes'=>{'urn:ietf:bcp:47'=>['ar', 'bn', 'cs', 'da', 'de', 'de-AT', 'de-CH', 'de-DE', 'el', 'en', 'en-AU', 'en-CA', 'en-GB', 'en-IN', 'en-NZ', 'en-SG', 'en-US', 'es', 'es-AR', 'es-ES', 'es-UY', 'fi', 'fr', 'fr-BE', 'fr-CH', 'fr-FR', 'fy', 'fy-NL', 'hi', 'hr', 'it', 'it-CH', 'it-IT', 'ja', 'ko', 'nl', 'nl-BE', 'nl-NL', 'no', 'no-NO', 'pa', 'pl', 'pt', 'pt-BR', 'ru', 'ru-RU', 'sr', 'sr-RS', 'sv', 'sv-SE', 'te', 'zh', 'zh-CN', 'zh-HK', 'zh-SG', 'zh-TW']}, 'type'=>'code', 'path'=>'Bundle.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'preferred', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'identifier' => {'type'=>'Identifier', 'path'=>'Bundle.identifier', 'min'=>0, 'max'=>1},
  'type' => {'valid_codes'=>{'http://hl7.org/fhir/bundle-type'=>['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|4.0.0'}},
  'timestamp' => {'type'=>'instant', 'path'=>'Bundle.timestamp', 'min'=>0, 'max'=>1},
  '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, #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, #equals?, #hash, #initialize, #method_missing, #mismatch, #primitive?, #to_reference, #valid?, #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 ]



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

def entry
  @entry
end

#idObject

0-1 id



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

def id
  @id
end

#identifierObject

0-1 Identifier



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

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



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

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



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

def language
  @language
end

0-* [ Bundle::Link ]



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

def link
  @link
end

#metaObject

0-1 Meta



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

def meta
  @meta
end

#signatureObject

0-1 Signature



154
155
156
# File 'lib/fhir_models/fhir/resources/Bundle.rb', line 154

def signature
  @signature
end

#timestampObject

0-1 instant



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

def timestamp
  @timestamp
end

#totalObject

0-1 unsignedInt



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

def total
  @total
end

#typeObject

1-1 code



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

def type
  @type
end

Instance Method Details

#resourceTypeObject



156
157
158
# File 'lib/fhir_models/fhir/resources/Bundle.rb', line 156

def resourceType
  'Bundle'
end