TestScriptCapability constructor

const TestScriptCapability({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. @JsonKey(name: 'required') FhirBoolean? required_,
  5. @JsonKey(name: '_required') Element? requiredElement,
  6. FhirBoolean? validated,
  7. @JsonKey(name: '_validated') Element? validatedElement,
  8. String? description,
  9. @JsonKey(name: '_description') Element? descriptionElement,
  10. List<FhirInteger>? origin,
  11. @JsonKey(name: '_origin') List<Element>? originElement,
  12. FhirInteger? destination,
  13. @JsonKey(name: '_destination') Element? destinationElement,
  14. List<FhirUri>? link,
  15. @JsonKey(name: '_link') List<Element>? linkElement,
  16. required FhirCanonical capabilities,
})

TestScriptCapability A structured set of tests against a FHIR server or client implementation to determine compliance against the FHIR specification.

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).

required_ ("required") Whether or not the test execution will require the given capabilities of the server in order for this test script to execute.

requiredElement ("_required") Extensions for required

validated Whether or not the test execution will validate the given capabilities of the server in order for this test script to execute.

validatedElement ("_validated") Extensions for validated

description Description of the capabilities that this test script is requiring the server to support.

descriptionElement ("_description") Extensions for description

origin Which origin server these requirements apply to.

originElement ("_origin") Extensions for origin

destination Which server these requirements apply to.

destinationElement ("_destination") Extensions for destination

link Links to the FHIR specification that describes this interaction and the resources involved in more detail.

linkElement ("_link") Extensions for link

capabilities Minimum capabilities required of server for test script to execute successfully. If server does not meet at a minimum the referenced capability statement, then all tests in this script are skipped.

Implementation

const factory TestScriptCapability({
  /// [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,

  /// [required_] ("required") Whether or not the test execution will require
  ///  the given capabilities of the server in order for this test script to
  ///  execute.
  @JsonKey(name: 'required') FhirBoolean? required_,

  /// [requiredElement] ("_required") Extensions for required
  @JsonKey(name: '_required') Element? requiredElement,

  /// [validated] Whether or not the test execution will validate the given
  ///  capabilities of the server in order for this test script to execute.
  FhirBoolean? validated,

  /// [validatedElement] ("_validated") Extensions for validated
  @JsonKey(name: '_validated') Element? validatedElement,

  /// [description] Description of the capabilities that this test script is
  ///  requiring the server to support.
  String? description,

  /// [descriptionElement] ("_description") Extensions for description
  @JsonKey(name: '_description') Element? descriptionElement,

  /// [origin] Which origin server these requirements apply to.
  List<FhirInteger>? origin,

  /// [originElement] ("_origin") Extensions for origin
  @JsonKey(name: '_origin') List<Element>? originElement,

  /// [destination] Which server these requirements apply to.
  FhirInteger? destination,

  /// [destinationElement] ("_destination") Extensions for destination
  @JsonKey(name: '_destination') Element? destinationElement,

  /// [link] Links to the FHIR specification that describes this interaction
  ///  and the resources involved in more detail.
  List<FhirUri>? link,

  /// [linkElement] ("_link") Extensions for link
  @JsonKey(name: '_link') List<Element>? linkElement,

  /// [capabilities] Minimum capabilities required of server for test script
  ///  to execute successfully.   If server does not meet at a minimum the
  ///  referenced capability statement, then all tests in this script are
  ///  skipped.
  required FhirCanonical capabilities,
}) = _TestScriptCapability;