ImagingSelectionInstance constructor

const ImagingSelectionInstance({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirId? uid,
  5. @JsonKey(name: '_uid') Element? uidElement,
  6. FhirUnsignedInt? number,
  7. @JsonKey(name: '_number') Element? numberElement,
  8. Coding? sopClass,
  9. List<String>? subset,
  10. @JsonKey(name: '_subset') List<Element>? subsetElement,
  11. List<ImagingSelectionImageRegion2D>? imageRegion2D,
  12. List<ImagingSelectionImageRegion3D>? imageRegion3D,
})

ImagingSelectionInstance A selection of DICOM SOP instances and/or frames within a single Study and Series. This might include additional specifics such as an image region, an Observation UID or a Segmentation Number, allowing linkage to an Observation Resource or transferring this information along with the ImagingStudy Resource.

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

uid The SOP Instance UID for the selected DICOM instance.

uidElement ("_uid") Extensions for uid

number The Instance Number for the selected DICOM instance.

numberElement ("_number") Extensions for number

sopClass The SOP Class UID for the selected DICOM instance.

subset Selected subset of the SOP Instance. The content and format of the subset item is determined by the SOP Class of the selected instance. May be one of:

  • A list of frame numbers selected from a multiframe SOP Instance.
  • A list of Content Item Observation UID values selected from a DICOM SR or other structured document SOP Instance.
  • A list of segment numbers selected from a segmentation SOP Instance.
  • A list of Region of Interest (ROI) numbers selected from a radiotherapy structure set SOP Instance.

subsetElement ("_subset") Extensions for subset

imageRegion2D Each imaging selection instance or frame list might includes an image region, specified by a region type and a set of 2D coordinates. If the parent imagingSelection.instance contains a subset element of type frame, the image region applies to all frames in the subset list.

imageRegion3D Each imaging selection might includes a 3D image region, specified by a region type and a set of 3D coordinates.

Implementation

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

  /// [uid] The SOP Instance UID for the selected DICOM instance.
  FhirId? uid,

  /// [uidElement] ("_uid") Extensions for uid
  @JsonKey(name: '_uid') Element? uidElement,

  /// [number] The Instance Number for the selected DICOM instance.
  FhirUnsignedInt? number,

  /// [numberElement] ("_number") Extensions for number
  @JsonKey(name: '_number') Element? numberElement,

  /// [sopClass] The SOP Class UID for the selected DICOM instance.
  Coding? sopClass,

  /// [subset] Selected subset of the SOP Instance. The content and format of
  ///  the subset item is determined by the SOP Class of the selected
  ///  instance.
  /// May be one of:
  /// - A list of frame numbers selected from a multiframe SOP Instance.
  /// - A list of Content Item Observation UID values selected from a DICOM
  ///  SR or other structured document SOP Instance.
  /// - A list of segment numbers selected from a segmentation SOP Instance.
  /// - A list of Region of Interest (ROI) numbers selected from a
  ///  radiotherapy structure set SOP Instance.
  List<String>? subset,

  /// [subsetElement] ("_subset") Extensions for subset
  @JsonKey(name: '_subset') List<Element>? subsetElement,

  /// [imageRegion2D] Each imaging selection instance or frame list might
  ///  includes an image region, specified by a region type and a set of 2D
  ///  coordinates. If the parent imagingSelection.instance contains a subset
  ///  element of type frame, the image region applies to all frames in the
  ///  subset list.
  List<ImagingSelectionImageRegion2D>? imageRegion2D,

  /// [imageRegion3D] Each imaging selection might includes a 3D image
  ///  region, specified by a region type and a set of 3D coordinates.
  List<ImagingSelectionImageRegion3D>? imageRegion3D,
}) = _ImagingSelectionInstance;