Class: FHIR::Contract::Term

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

Defined Under Namespace

Classes: Action, Asset, Offer, SecurityLabel

Constant Summary collapse

MULTIPLE_TYPES =
{
  'topic' => ['CodeableConcept', 'Reference']
}
METADATA =
{
  'id' => {'type'=>'string', 'path'=>'Term.id', 'min'=>0, 'max'=>1},
  'extension' => {'type'=>'Extension', 'path'=>'Term.extension', 'min'=>0, 'max'=>Float::INFINITY},
  'modifierExtension' => {'type'=>'Extension', 'path'=>'Term.modifierExtension', 'min'=>0, 'max'=>Float::INFINITY},
  'identifier' => {'type'=>'Identifier', 'path'=>'Term.identifier', 'min'=>0, 'max'=>1},
  'issued' => {'type'=>'dateTime', 'path'=>'Term.issued', 'min'=>0, 'max'=>1},
  'applies' => {'type'=>'Period', 'path'=>'Term.applies', 'min'=>0, 'max'=>1},
  'topicCodeableConcept' => {'type'=>'CodeableConcept', 'path'=>'Term.topic[x]', 'min'=>0, 'max'=>1},
  'topicReference' => {'type_profiles'=>['http://hl7.org/fhir/StructureDefinition/Resource'], 'type'=>'Reference', 'path'=>'Term.topic[x]', 'min'=>0, 'max'=>1},
  'type' => {'valid_codes'=>{'http://terminology.hl7.org/CodeSystem/contracttermtypecodes'=>['statutory', 'subject-to']}, 'type'=>'CodeableConcept', 'path'=>'Term.type', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/contract-term-type'}},
  'subType' => {'valid_codes'=>{'http://terminology.hl7.org/CodeSystem/contracttermsubtypecodes'=>['condition', 'warranty', 'innominate']}, 'type'=>'CodeableConcept', 'path'=>'Term.subType', 'min'=>0, 'max'=>1, 'binding'=>{'strength'=>'example', 'uri'=>'http://hl7.org/fhir/ValueSet/contract-term-subtype'}},
  'text' => {'type'=>'string', 'path'=>'Term.text', 'min'=>0, 'max'=>1},
  'securityLabel' => {'type'=>'Contract::Term::SecurityLabel', 'path'=>'Term.securityLabel', 'min'=>0, 'max'=>Float::INFINITY},
  'offer' => {'type'=>'Contract::Term::Offer', 'path'=>'Term.offer', 'min'=>1, 'max'=>1},
  'asset' => {'type'=>'Contract::Term::Asset', 'path'=>'Term.asset', 'min'=>0, 'max'=>Float::INFINITY},
  'action' => {'type'=>'Contract::Term::Action', 'path'=>'Term.action', 'min'=>0, 'max'=>Float::INFINITY},
  'group' => {'type'=>'Contract::Term', 'path'=>'Term.group', 'min'=>0, 'max'=>Float::INFINITY}
}

Instance Attribute Summary collapse

Method Summary

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

#actionObject

0-* [ Contract::Term::Action ]



452
453
454
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 452

def action
  @action
end

#appliesObject

0-1 Period



443
444
445
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 443

def applies
  @applies
end

#assetObject

0-* [ Contract::Term::Asset ]



451
452
453
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 451

def asset
  @asset
end

#extensionObject

0-* [ Extension ]



439
440
441
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 439

def extension
  @extension
end

#groupObject

0-* [ Contract::Term ]



453
454
455
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 453

def group
  @group
end

#idObject

0-1 string



438
439
440
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 438

def id
  @id
end

#identifierObject

0-1 Identifier



441
442
443
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 441

def identifier
  @identifier
end

#issuedObject

0-1 dateTime



442
443
444
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 442

def issued
  @issued
end

#modifierExtensionObject

0-* [ Extension ]



440
441
442
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 440

def modifierExtension
  @modifierExtension
end

#offerObject

1-1 Contract::Term::Offer



450
451
452
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 450

def offer
  @offer
end

#securityLabelObject

0-* [ Contract::Term::SecurityLabel ]



449
450
451
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 449

def securityLabel
  @securityLabel
end

#subTypeObject

0-1 CodeableConcept



447
448
449
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 447

def subType
  @subType
end

#textObject

0-1 string



448
449
450
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 448

def text
  @text
end

#topicCodeableConceptObject

0-1 CodeableConcept



444
445
446
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 444

def topicCodeableConcept
  @topicCodeableConcept
end

#topicReferenceObject

0-1 Reference(Resource)



445
446
447
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 445

def topicReference
  @topicReference
end

#typeObject

0-1 CodeableConcept



446
447
448
# File 'lib/fhir_models/fhir/resources/Contract.rb', line 446

def type
  @type
end