Class: FHIR::Endpoint

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

Constant Summary collapse

SEARCH_PARAMS =
['connection-type', 'identifier', 'name', 'organization', 'payload-type', 'status']
METADATA =
{
  'id' => {'type'=>'id', 'path'=>'Endpoint.id', 'min'=>0, 'max'=>1},
  'meta' => {'type'=>'Meta', 'path'=>'Endpoint.meta', 'min'=>0, 'max'=>1},
  'implicitRules' => {'type'=>'uri', 'path'=>'Endpoint.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', 'pt', 'pt-BR', 'ru', 'ru-RU', 'sr', 'sr-SP', 'sv', 'sv-SE', 'te', 'zh', 'zh-CN', 'zh-HK', 'zh-SG', 'zh-TW']}, 'type'=>'code', 'path'=>'Endpoint.language', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/languages'}},
  'text' => {'type'=>'Narrative', 'path'=>'Endpoint.text', 'min'=>0, 'max'=>1},
  'contained' => {'type'=>'Resource', 'path'=>'Endpoint.contained', 'min'=>0, 'max'=>Float::INFINITY},
  'extension' => {'type'=>'Extension', 'path'=>'Endpoint.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'Endpoint.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'Endpoint.identifier', 'min'=>0, 'max'=>Float::INFINITY},
  'status' => {'valid_codes'=>{'http://hl7.org/fhir/endpoint-status'=>['active', 'suspended', 'error', 'off', 'entered-in-error', 'test']}, 'type'=>'code', 'path'=>'Endpoint.status', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'required', 'uri'=>'http://hl7.org/fhir/ValueSet/endpoint-status'}},
  'connectionType' => {'valid_codes'=>{'http://hl7.org/fhir/endpoint-connection-type'=>['ihe-xcpd', 'ihe-xca', 'ihe-xdr', 'ihe-xds', 'ihe-iid', 'dicom-wado-rs', 'dicom-qido-rs', 'dicom-stow-rs', 'dicom-wado-uri', 'hl7-fhir-rest', 'hl7-fhir-msg', 'hl7v2-mllp', 'secure-email', 'direct-project']}, 'type'=>'Coding', 'path'=>'Endpoint.connectionType', 'min'=>1, 'max'=>1, 'binding'=>{'strength'=>'extensible', 'uri'=>'http://hl7.org/fhir/ValueSet/endpoint-connection-type'}},
  'name' => {'type'=>'string', 'path'=>'Endpoint.name', 'min'=>0, 'max'=>1},
  'managingOrganization' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Organization'], 'type'=>'Reference', 'path'=>'Endpoint.managingOrganization', 'min'=>0, 'max'=>1},
  'contact' => {'type'=>'ContactPoint', 'path'=>'Endpoint.contact', 'min'=>0, 'max'=>Float::INFINITY},
  'period' => {'type'=>'Period', 'path'=>'Endpoint.period', 'min'=>0, 'max'=>1},
  'payloadType' => {'type'=>'CodeableConcept', 'path'=>'Endpoint.payloadType', 'min'=>1, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/endpoint-payload-type'}},
  'payloadMimeType' => {'type'=>'code', 'path'=>'Endpoint.payloadMimeType', 'min'=>0, 'max'=>Float::INFINITY, 'binding'=>{'strength'=>'required', 'uri'=>'http://www.rfc-editor.org/bcp/bcp13.txt'}},
  'address' => {'type'=>'uri', 'path'=>'Endpoint.address', 'min'=>1, 'max'=>1},
  'header' => {'type'=>'string', 'path'=>'Endpoint.header', 'min'=>0, 'max'=>Float::INFINITY}
}

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

#addressObject

1-1 uri



47
48
49
# File 'lib/fhir_models/fhir/resources/Endpoint.rb', line 47

def address
  @address
end

#connectionTypeObject

1-1 Coding



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

def connectionType
  @connectionType
end

#contactObject

0-* [ ContactPoint ]



43
44
45
# File 'lib/fhir_models/fhir/resources/Endpoint.rb', line 43

def contact
  @contact
end

#containedObject

0-* [ Resource ]



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

def contained
  @contained
end

#extensionObject

0-* [ Extension ]



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

def extension
  @extension
end

#headerObject

0-* [ string ]



48
49
50
# File 'lib/fhir_models/fhir/resources/Endpoint.rb', line 48

def header
  @header
end

#idObject

0-1 id



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

def id
  @id
end

#identifierObject

0-* [ Identifier ]



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

def identifier
  @identifier
end

#implicitRulesObject

0-1 uri



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

def implicitRules
  @implicitRules
end

#languageObject

0-1 code



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

def language
  @language
end

#managingOrganizationObject

0-1 Reference(Organization)



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

def managingOrganization
  @managingOrganization
end

#metaObject

0-1 Meta



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

def meta
  @meta
end

#modifierExtensionObject

0-* [ Extension ]



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

def modifierExtension
  @modifierExtension
end

#nameObject

0-1 string



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

def name
  @name
end

#payloadMimeTypeObject

0-* [ code ]



46
47
48
# File 'lib/fhir_models/fhir/resources/Endpoint.rb', line 46

def payloadMimeType
  @payloadMimeType
end

#payloadTypeObject

1-* [ CodeableConcept ]



45
46
47
# File 'lib/fhir_models/fhir/resources/Endpoint.rb', line 45

def payloadType
  @payloadType
end

#periodObject

0-1 Period



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

def period
  @period
end

#statusObject

1-1 code



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

def status
  @status
end

#textObject

0-1 Narrative



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

def text
  @text
end

Instance Method Details

#resourceTypeObject



50
51
52
# File 'lib/fhir_models/fhir/resources/Endpoint.rb', line 50

def resourceType
  'Endpoint'
end