Class: FHIR::DSTU2::BodySite
- Defined in:
- lib/fhir_dstu2_models/fhir/resources/BodySite.rb
Constant Summary collapse
- SEARCH_PARAMS =
['code', 'identifier', 'patient']
- METADATA =
{ 'id' => { 'type' => 'id', 'path' => 'BodySite.id', 'min' => 0, 'max' => 1 }, 'meta' => { 'type' => 'Meta', 'path' => 'BodySite.meta', 'min' => 0, 'max' => 1 }, 'implicitRules' => { 'type' => 'uri', 'path' => 'BodySite.implicitRules', 'min' => 0, 'max' => 1 }, 'language' => { 'type' => 'code', 'path' => 'BodySite.language', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'required', 'uri' => 'http://tools.ietf.org/html/bcp47' } }, 'text' => { 'type' => 'Narrative', 'path' => 'BodySite.text', 'min' => 0, 'max' => 1 }, 'contained' => { 'type' => 'Resource', 'path' => 'BodySite.contained', 'min' => 0, 'max' => Float::INFINITY }, 'extension' => { 'type' => 'Extension', 'path' => 'BodySite.extension', 'min' => 0, 'max' => Float::INFINITY }, 'modifierExtension' => { 'type' => 'Extension', 'path' => 'BodySite.modifierExtension', 'min' => 0, 'max' => Float::INFINITY }, 'patient' => { 'type' => 'Reference', 'path' => 'BodySite.patient', 'min' => 1, 'max' => 1 }, 'identifier' => { 'type' => 'Identifier', 'path' => 'BodySite.identifier', 'min' => 0, 'max' => Float::INFINITY }, 'code' => { 'valid_codes' => { 'http://snomed.info/sct' => [] }, 'type' => 'CodeableConcept', 'path' => 'BodySite.code', 'min' => 0, 'max' => 1, 'binding' => { 'strength' => 'example', 'uri' => 'http://hl7.org/fhir/ValueSet/body-site' } }, 'modifier' => { 'valid_codes' => { 'http://snomed.info/sct' => ['419161000', '419465000', '51440002', '261183002', '261122009', '255561001', '49370004', '264217000', '261089000', '255551008', '351726001', '352730000'] }, 'type' => 'CodeableConcept', 'path' => 'BodySite.modifier', 'min' => 0, 'max' => Float::INFINITY, 'binding' => { 'strength' => 'example', 'uri' => 'http://hl7.org/fhir/ValueSet/bodysite-relative-location' } }, 'description' => { 'type' => 'string', 'path' => 'BodySite.description', 'min' => 0, 'max' => 1 }, 'image' => { 'type' => 'Attachment', 'path' => 'BodySite.image', 'min' => 0, 'max' => Float::INFINITY } }
Instance Attribute Summary collapse
-
#code ⇒ Object
0-1 CodeableConcept.
-
#contained ⇒ Object
0-* [ Resource ].
-
#description ⇒ Object
0-1 string.
-
#extension ⇒ Object
0-* [ Extension ].
-
#id ⇒ Object
0-1 id.
-
#identifier ⇒ Object
0-* [ Identifier ].
-
#image ⇒ Object
0-* [ Attachment ].
-
#implicitRules ⇒ Object
0-1 uri.
-
#language ⇒ Object
0-1 code.
-
#meta ⇒ Object
0-1 Meta.
-
#modifier ⇒ Object
0-* [ CodeableConcept ].
-
#modifierExtension ⇒ Object
0-* [ Extension ].
-
#patient ⇒ Object
1-1 Reference().
-
#text ⇒ Object
0-1 Narrative.
Instance Method Summary collapse
Methods included from Xml
from_xml, #to_xml, valid?, validate
Methods included from Deprecate
Methods included from Json
Methods included from Hashable
Methods inherited from Model
#==, #attribute_mismatch, #compare_attribute, #each_element, #equals?, #hash, #initialize, #method_missing, #mismatch, #primitive?, #respond_to_missing?, #to_reference, #valid?, #validate, #validate_profile
Constructor Details
This class inherits a constructor from FHIR::DSTU2::Model
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class FHIR::DSTU2::Model
Instance Attribute Details
#code ⇒ Object
0-1 CodeableConcept
36 37 38 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 36 def code @code end |
#contained ⇒ Object
0-* [ Resource ]
31 32 33 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 31 def contained @contained end |
#description ⇒ Object
0-1 string
38 39 40 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 38 def description @description end |
#extension ⇒ Object
0-* [ Extension ]
32 33 34 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 32 def extension @extension end |
#id ⇒ Object
0-1 id
26 27 28 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 26 def id @id end |
#identifier ⇒ Object
0-* [ Identifier ]
35 36 37 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 35 def identifier @identifier end |
#image ⇒ Object
0-* [ Attachment ]
39 40 41 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 39 def image @image end |
#implicitRules ⇒ Object
0-1 uri
28 29 30 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 28 def implicitRules @implicitRules end |
#language ⇒ Object
0-1 code
29 30 31 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 29 def language @language end |
#meta ⇒ Object
0-1 Meta
27 28 29 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 27 def @meta end |
#modifier ⇒ Object
0-* [ CodeableConcept ]
37 38 39 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 37 def modifier @modifier end |
#modifierExtension ⇒ Object
0-* [ Extension ]
33 34 35 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 33 def modifierExtension @modifierExtension end |
#patient ⇒ Object
1-1 Reference()
34 35 36 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 34 def patient @patient end |
#text ⇒ Object
0-1 Narrative
30 31 32 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 30 def text @text end |
Instance Method Details
#resourceType ⇒ Object
41 42 43 |
# File 'lib/fhir_dstu2_models/fhir/resources/BodySite.rb', line 41 def resourceType 'BodySite' end |