Class: FHIR::ValueSet

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

Defined Under Namespace

Classes: Compose, Expansion

Constant Summary collapse

SEARCH_PARAMS =
['context', 'context-quantity', 'context-type', 'date', 'description', 'jurisdiction', 'name', 'publisher', 'status', 'title', 'url', 'version', 'identifier', 'code', 'expansion', 'reference']
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'ValueSet.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'ValueSet.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'ValueSet.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'=>'ValueSet.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'preferred', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'text' => {'type'=>'Narrative', 'path'=>'ValueSet.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'ValueSet.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'ValueSet.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'ValueSet.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'url' => {'type'=>'uri', 'path'=>'ValueSet.url', 'min'=>0, 'max'=>1},
  'identifier' => {'type'=>'Identifier', 'path'=>'ValueSet.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'version' => {'type'=>'string', 'path'=>'ValueSet.version', 'min'=>0, 'max'=>1},
  'name' => {'type'=>'string', 'path'=>'ValueSet.name', 'min'=>0, 'max'=>1},
  'title' => {'type'=>'string', 'path'=>'ValueSet.title', 'min'=>0, 'max'=>1},
  'status' => {'valid_codes'=>{'http://hl7.org/fhir/publication-status'=>['draft', 'active', 'retired', 'unknown']}, 'type'=>'code', 'path'=>'ValueSet.status', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/publication-status|4.0.0'}},
  'experimental' => {'type'=>'boolean', 'path'=>'ValueSet.experimental', 'min'=>0, 'max'=>1},
  'date' => {'type'=>'dateTime', 'path'=>'ValueSet.date', 'min'=>0, 'max'=>1},
  'publisher' => {'type'=>'string', 'path'=>'ValueSet.publisher', 'min'=>0, 'max'=>1},
  'contact' => {'type'=>'ContactDetail', 'path'=>'ValueSet.contact', 'min'=>0, 'max'=>Float::INFINITY},
  'description' => {'type'=>'markdown', 'path'=>'ValueSet.description', 'min'=>0, 'max'=>1},
  'useContext' => {'type'=>'UsageContext', 'path'=>'ValueSet.useContext', 'min'=>0, 'max'=>Float::INFINITY},
  'jurisdiction' => {'type'=>'CodeableConcept', 'path'=>'ValueSet.jurisdiction', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/jurisdiction'}},
  'immutable' => {'type'=>'boolean', 'path'=>'ValueSet.immutable', 'min'=>0, 'max'=>1},
  'purpose' => {'type'=>'markdown', 'path'=>'ValueSet.purpose', 'min'=>0, 'max'=>1},
  'copyright' => {'type'=>'markdown', 'path'=>'ValueSet.copyright', 'min'=>0, 'max'=>1},
  'compose' => {'type'=>'ValueSet::Compose', 'path'=>'ValueSet.compose', 'min'=>0, 'max'=>1},
  'expansion' => {'type'=>'ValueSet::Expansion', 'path'=>'ValueSet.expansion', '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

#composeObject

0-1 ValueSet::Compose



272
273
274
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 272

def compose
  @compose
end

#contactObject

0-* [ ContactDetail ]



265
266
267
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 265

def contact
  @contact
end

#containedObject

0-* [ Resource ]



253
254
255
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 253

def contained
  @contained
end

0-1 markdown



271
272
273
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 271

def copyright
  @copyright
end

#dateObject

0-1 dateTime



263
264
265
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 263

def date
  @date
end

#descriptionObject

0-1 markdown



266
267
268
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 266

def description
  @description
end

#expansionObject

0-1 ValueSet::Expansion



273
274
275
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 273

def expansion
  @expansion
end

#experimentalObject

0-1 boolean



262
263
264
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 262

def experimental
  @experimental
end

#extensionObject

0-* [ Extension ]



254
255
256
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 254

def extension
  @extension
end

#idObject

0-1 id



248
249
250
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 248

def id
  @id
end

#identifierObject

0-* [ Identifier ]



257
258
259
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 257

def identifier
  @identifier
end

#immutableObject

0-1 boolean



269
270
271
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 269

def immutable
  @immutable
end

#implicitRulesObject

0-1 uri



250
251
252
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 250

def implicitRules
  @implicitRules
end

#jurisdictionObject

0-* [ CodeableConcept ]



268
269
270
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 268

def jurisdiction
  @jurisdiction
end

#languageObject

0-1 code



251
252
253
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 251

def language
  @language
end

#metaObject

0-1 Meta



249
250
251
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 249

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



255
256
257
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 255

def modifierExtension
  @modifierExtension
end

#nameObject

0-1 string



259
260
261
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 259

def name
  @name
end

#publisherObject

0-1 string



264
265
266
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 264

def publisher
  @publisher
end

#purposeObject

0-1 markdown



270
271
272
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 270

def purpose
  @purpose
end

#statusObject

1-1 code



261
262
263
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 261

def status
  @status
end

#textObject

0-1 Narrative



252
253
254
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 252

def text
  @text
end

#titleObject

0-1 string



260
261
262
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 260

def title
  @title
end

#urlObject

0-1 uri



256
257
258
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 256

def url
  @url
end

#useContextObject

0-* [ UsageContext ]



267
268
269
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 267

def useContext
  @useContext
end

#versionObject

0-1 string



258
259
260
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 258

def version
  @version
end

Instance Method Details

#resourceTypeObject



275
276
277
# File 'lib/fhir_models/fhir/resources/ValueSet.rb', line 275

def resourceType
  'ValueSet'
end