Sha256: d5d7f9dbd139d58a4d0c15a16c7f0cc42a279e6fd0641de33cd6f61f25521d96
Contents?: true
Size: 1.85 KB
Versions: 3
Compression:
Stored size: 1.85 KB
Contents
module FHIR class Identifier < FHIR::Model include FHIR::Hashable include FHIR::Json include FHIR::Xml SEARCH_PARAMS = METADATA = { 'id' => {'type'=>'string', 'path'=>'Identifier.id', 'min'=>0, 'max'=>1}, 'extension' => {'type'=>'Extension', 'path'=>'Identifier.extension', 'min'=>0, 'max'=>Float::INFINITY}, 'use' => {'valid_codes'=>{'http://hl7.org/fhir/identifier-use'=>['usual', 'official', 'temp', 'secondary', 'usual', 'official', 'temp', 'secondary']}, 'type'=>'code', 'path'=>'Identifier.use', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/identifier-use'}}, 'type' => {'valid_codes'=>{'http://hl7.org/fhir/v2/0203'=>['DL', 'PPN', 'BRN', 'MR', 'MCN', 'EN', 'TAX', 'NIIP', 'PRN', 'MD', 'DR', 'ACSN'], 'http://hl7.org/fhir/identifier-type'=>['UDI', 'SNO', 'SB', 'PLAC', 'FILL', 'UDI', 'SNO', 'SB', 'PLAC', 'FILL']}, 'type'=>'CodeableConcept', 'path'=>'Identifier.type', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/identifier-type'}}, 'system' => {'type'=>'uri', 'path'=>'Identifier.system', 'min'=>0, 'max'=>1}, 'value' => {'type'=>'string', 'path'=>'Identifier.value', 'min'=>0, 'max'=>1}, 'period' => {'type'=>'Period', 'path'=>'Identifier.period', 'min'=>0, 'max'=>1}, 'assigner' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Organization'], 'type'=>'Reference', 'path'=>'Identifier.assigner', 'min'=>0, 'max'=>1} } attr_accessor :id # 0-1 string attr_accessor :extension # 0-* [ Extension ] attr_accessor :use # 0-1 code attr_accessor :type # 0-1 CodeableConcept attr_accessor :system # 0-1 uri attr_accessor :value # 0-1 string attr_accessor :period # 0-1 Period attr_accessor :assigner # 0-1 Reference(Organization) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fhir_models-1.8.3 | lib/fhir_models/fhir/types/Identifier.rb |
fhir_models-1.8.2 | lib/fhir_models/fhir/types/Identifier.rb |
fhir_models-1.8.1 | lib/fhir_models/fhir/types/Identifier.rb |