Class: FHIR::DSTU2::Basic

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

Constant Summary collapse

SEARCH_PARAMS =
['author', 'code', 'created', 'identifier', 'patient', 'subject']
METADATA =
{
  'id' => { 'type' => 'id', 'path' => 'Basic.id', 'min' => 0, 'max' => 1 },
  'meta' => { 'type' => 'Meta', 'path' => 'Basic.meta', 'min' => 0, 'max' => 1 },
  'implicitRules' => { 'type' => 'uri', 'path' => 'Basic.implicitRules', 'min' => 0, 'max' => 1 },
  'language' => { 'type' => 'code', 'path' => 'Basic.language', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://tools.ietf.org/html/bcp47' } },
  'text' => { 'type' => 'Narrative', 'path' => 'Basic.text', 'min' => 0, 'max' => 1 },
  'contained' => { 'type' => 'Resource', 'path' => 'Basic.contained', 'min' => 0, 'max' => Float::INFINITY },
  'extension' => { 'type' => 'Extension', 'path' => 'Basic.extension', 'min' => 0, 'max' => Float::INFINITY },
  'modifierExtension' => { 'type' => 'Extension', 'path' => 'Basic.modifierExtension', 'min' => 0, 'max' => Float::INFINITY },
  'identifier' => { 'type' => 'Identifier', 'path' => 'Basic.identifier', 'min' => 0, 'max' => Float::INFINITY },
  'code' => { 'valid_codes' => { 'http://hl7.org/fhir/basic-resource-type' => ['consent', 'referral', 'advevent', 'aptmtreq', 'transfer', 'diet', 'adminact', 'exposure', 'investigation', 'account', 'invoice', 'adjudicat', 'predetreq', 'predetermine', 'study', 'protocol'] }, 'type' => 'CodeableConcept', 'path' => 'Basic.code', 'min' => 1, 'max' => 1, 'binding' => { 'strength' => 'example', 'uri' => 'http://hl7.org/fhir/ValueSet/basic-resource-type' } },
  'subject' => { 'type' => 'Reference', 'path' => 'Basic.subject', 'min' => 0, 'max' => 1 },
  'author' => { 'type' => 'Reference', 'path' => 'Basic.author', 'min' => 0, 'max' => 1 },
  'created' => { 'type' => 'date', 'path' => 'Basic.created', '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, #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

#authorObject

0-1 Reference()



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

def author
  @author
end

#codeObject

1-1 CodeableConcept



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

def code
  @code
end

#containedObject

0-* [ Resource ]



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

def contained
  @contained
end

#createdObject

0-1 date



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

def created
  @created
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#idObject

0-1 id



25
26
27
# File 'lib/fhir_dstu2_models/fhir/resources/Basic.rb', line 25

def id
  @id
end

#identifierObject

0-* [ Identifier ]



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

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



27
28
29
# File 'lib/fhir_dstu2_models/fhir/resources/Basic.rb', line 27

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



28
29
30
# File 'lib/fhir_dstu2_models/fhir/resources/Basic.rb', line 28

def language
  @language
end

#metaObject

0-1 Meta



26
27
28
# File 'lib/fhir_dstu2_models/fhir/resources/Basic.rb', line 26

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



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

def modifierExtension
  @modifierExtension
end

#subjectObject

0-1 Reference()



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

def subject
  @subject
end

#textObject

0-1 Narrative



29
30
31
# File 'lib/fhir_dstu2_models/fhir/resources/Basic.rb', line 29

def text
  @text
end

Instance Method Details

#resourceTypeObject



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

def resourceType
  'Basic'
end