Class: FHIR::CodeSystem::Property

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

Constant Summary collapse

METADATA =
{
  'id' => {'type'=>'string', 'path'=>'Property.id', 'min'=>0, 'max'=>1},
  'extension' => {'type'=>'Extension', 'path'=>'Property.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'Property.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'code' => {'type'=>'code', 'path'=>'Property.code', 'min'=>1, 'max'=>1},
  'uri' => {'type'=>'uri', 'path'=>'Property.uri', 'min'=>0, 'max'=>1},
  'description' => {'type'=>'string', 'path'=>'Property.description', 'min'=>0, 'max'=>1},
  'type' => {'valid_codes'=>{'http://hl7.org/fhir/concept-property-type'=>['code', 'Coding', 'string', 'integer', 'boolean', 'dateTime', 'decimal']}, 'type'=>'code', 'path'=>'Property.type', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/concept-property-type|4.0.0'}}
}

Instance Attribute Summary collapse

Method Summary

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

#codeObject

1-1 code



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

def code
  @code
end

#descriptionObject

0-1 string



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

def description
  @description
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#idObject

0-1 string



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

def id
  @id
end

#modifierExtensionObject

0-* [ Extension ]



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

def modifierExtension
  @modifierExtension
end

#typeObject

1-1 code



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

def type
  @type
end

#uriObject

0-1 uri



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

def uri
  @uri
end