Class: FHIR::Flag

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

Constant Summary collapse

SEARCH_PARAMS =
["author", "date", "encounter", "patient", "subject"]
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'Flag.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'Flag.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'Flag.implicitRules', 'min'=>0, 'max'=>1},
  'language' => {'type'=>'code', 'path'=>'Flag.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'text' => {'type'=>'Narrative', 'path'=>'Flag.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'Flag.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'Flag.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'Flag.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'Flag.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'category' => {'valid_codes'=>{'http://hl7.org/fhir/flag-category'=>['diet', 'drug', 'lab', 'admin', 'contact', 'diet', 'drug', 'lab', 'admin', 'contact']}, 'type'=>'CodeableConcept', 'path'=>'Flag.category', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/flag-category'}},
  'status' => {'valid_codes'=>{'http://hl7.org/fhir/flag-status'=>['active', 'inactive', 'entered-in-error', 'active', 'inactive', 'entered-in-error']}, 'type'=>'code', 'path'=>'Flag.status', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/flag-status'}},
  'period' => {'type'=>'Period', 'path'=>'Flag.period', 'min'=>0, 'max'=>1},
  'subject' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Patient', 'http://hl7.org/fhir/StructureDefinition/Location', 'http://hl7.org/fhir/StructureDefinition/Group', 'http://hl7.org/fhir/StructureDefinition/Organization', 'http://hl7.org/fhir/StructureDefinition/Practitioner', 'http://hl7.org/fhir/StructureDefinition/PlanDefinition', 'http://hl7.org/fhir/StructureDefinition/Medication', 'http://hl7.org/fhir/StructureDefinition/Procedure'], 'type'=>'Reference', 'path'=>'Flag.subject', 'min'=>1, 'max'=>1},
  'encounter' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Encounter'], 'type'=>'Reference', 'path'=>'Flag.encounter', 'min'=>0, 'max'=>1},
  'author' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Device', 'http://hl7.org/fhir/StructureDefinition/Organization', 'http://hl7.org/fhir/StructureDefinition/Patient', 'http://hl7.org/fhir/StructureDefinition/Practitioner'], 'type'=>'Reference', 'path'=>'Flag.author', 'min'=>0, 'max'=>1},
  'code' => {'valid_codes'=>{'http://snomed.info/sct'=>[]}, 'type'=>'CodeableConcept', 'path'=>'Flag.code', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/flag-code'}}
}

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

#authorObject

0-1 Reference(Device|Organization|Patient|Practitioner)



41
42
43
# File 'lib/fhir/resources/Flag.rb', line 41

def author
  @author
end

#categoryObject

0-1 CodeableConcept



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

def category
  @category
end

#codeObject

1-1 CodeableConcept



42
43
44
# File 'lib/fhir/resources/Flag.rb', line 42

def code
  @code
end

#containedObject

0-* [ Resource ]



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

def contained
  @contained
end

#encounterObject

0-1 Reference(Encounter)



40
41
42
# File 'lib/fhir/resources/Flag.rb', line 40

def encounter
  @encounter
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#idObject

0-1 id



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

def id
  @id
end

#identifierObject

0-* [ Identifier ]



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

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



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

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



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

def language
  @language
end

#metaObject

0-1 Meta



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

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



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

def modifierExtension
  @modifierExtension
end

#periodObject

0-1 Period



38
39
40
# File 'lib/fhir/resources/Flag.rb', line 38

def period
  @period
end

#statusObject

1-1 code



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

def status
  @status
end

#subjectObject

1-1 Reference(Patient|Location|Group|Organization|Practitioner|PlanDefinition|Medication|Procedure)



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

def subject
  @subject
end

#textObject

0-1 Narrative



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

def text
  @text
end

Instance Method Details

#resourceTypeObject



44
45
46
# File 'lib/fhir/resources/Flag.rb', line 44

def resourceType
  'Flag'
end