Class: FHIR::Resource

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

Constant Summary collapse

SEARCH_PARAMS =
["_id", "_lastUpdated", "_profile", "_security", "_tag"]
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'Resource.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'Resource.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'Resource.implicitRules', 'min'=>0, 'max'=>1},
  'language' => {'type'=>'code', 'path'=>'Resource.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}}
}

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

#idObject

0-1 id



15
16
17
# File 'lib/fhir/resources/Resource.rb', line 15

def id
  @id
end

#implicitRulesObject

0-1 uri



17
18
19
# File 'lib/fhir/resources/Resource.rb', line 17

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



18
19
20
# File 'lib/fhir/resources/Resource.rb', line 18

def language
  @language
end

#metaObject

0-1 Meta



16
17
18
# File 'lib/fhir/resources/Resource.rb', line 16

def meta
  @meta
end

Instance Method Details

#resourceTypeObject



20
21
22
# File 'lib/fhir/resources/Resource.rb', line 20

def resourceType
  'Resource'
end