TerminologyCapabilitiesVersion constructor

const TerminologyCapabilitiesVersion({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. String? code,
  5. @JsonKey(name: '_code') Element? codeElement,
  6. FhirBoolean? isDefault,
  7. @JsonKey(name: '_isDefault') Element? isDefaultElement,
  8. FhirBoolean? compositional,
  9. @JsonKey(name: '_compositional') Element? compositionalElement,
  10. List<FhirCode>? language,
  11. @JsonKey(name: '_language') List<Element>? languageElement,
  12. List<TerminologyCapabilitiesFilter>? filter,
  13. List<FhirCode>? property,
  14. @JsonKey(name: '_property') List<Element>? propertyElement,
})

TerminologyCapabilitiesVersion A TerminologyCapabilities resource documents a set of capabilities (behaviors) of a FHIR Terminology Server that may be used as a statement of actual server functionality or a statement of required or desired server implementation.

id Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.

extension_ ("extension") May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

modifierExtension May be used to represent additional information that is not part of the basic definition of the element and that modifies the understanding of the element in which it is contained and/or the understanding of the containing element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and managable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension. Applications processing a resource are required to check for modifier extensions.Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot change the meaning of modifierExtension itself).

code For version-less code systems, there should be a single version with no identifier.

codeElement ("_code") Extensions for code

isDefault If this is the default version for this code system.

isDefaultElement ("_isDefault") Extensions for isDefault

compositional If the compositional grammar defined by the code system is supported.

compositionalElement ("_compositional") Extensions for compositional

language Language Displays supported.

languageElement ("_language") Extensions for language

filter Filter Properties supported.

property Properties supported for $lookup.

propertyElement ("_property") Extensions for property

Implementation

const factory TerminologyCapabilitiesVersion({
  /// [id] Unique id for the element within a resource (for internal
  ///  references). This may be any string value that does not contain spaces.
  @JsonKey(name: 'id') String? fhirId,

  /// [extension_] ("extension") May be used to represent additional
  ///  information that is not part of the basic definition of the element.
  ///  To make the use of extensions safe and managable, there is a strict
  ///  set of governance applied to the definition and use of extensions.
  ///  Though any implementer can define an extension, there is a set of
  ///  requirements that SHALL be met as part of the definition of the
  ///  extension.
  @JsonKey(name: 'extension') List<FhirExtension>? extension_,

  /// [modifierExtension] May be used to represent additional information
  ///  that is not part of the basic definition of the element and that
  ///  modifies the understanding of the element in which it is contained
  ///  and/or the understanding of the containing element's descendants.
  ///  Usually modifier elements provide negation or qualification. To make
  ///  the use of extensions safe and managable, there is a strict set of
  ///  governance applied to the definition and use of extensions. Though any
  ///  implementer can define an extension, there is a set of requirements
  ///  that SHALL be met as part of the definition of the extension.
  ///  Applications processing a resource are required to check for modifier
  ///  extensions.Modifier extensions SHALL NOT change the meaning of any
  ///  elements on Resource or DomainResource (including cannot change the
  ///  meaning of modifierExtension itself).
  List<FhirExtension>? modifierExtension,

  /// [code] For version-less code systems, there should be a single version
  ///  with no identifier.
  String? code,

  /// [codeElement] ("_code") Extensions for code
  @JsonKey(name: '_code') Element? codeElement,

  /// [isDefault] If this is the default version for this code system.
  FhirBoolean? isDefault,

  /// [isDefaultElement] ("_isDefault") Extensions for isDefault
  @JsonKey(name: '_isDefault') Element? isDefaultElement,

  /// [compositional] If the compositional grammar defined by the code system
  ///  is supported.
  FhirBoolean? compositional,

  /// [compositionalElement] ("_compositional") Extensions for compositional
  @JsonKey(name: '_compositional') Element? compositionalElement,

  /// [language] Language Displays supported.
  List<FhirCode>? language,

  /// [languageElement] ("_language") Extensions for language
  @JsonKey(name: '_language') List<Element>? languageElement,

  /// [filter] Filter Properties supported.
  List<TerminologyCapabilitiesFilter>? filter,

  /// [property] Properties supported for $lookup.
  List<FhirCode>? property,

  /// [propertyElement] ("_property") Extensions for property
  @JsonKey(name: '_property') List<Element>? propertyElement,
}) = _TerminologyCapabilitiesVersion;