ArtifactAssessmentContent constructor

const ArtifactAssessmentContent({
  1. @JsonKey(name: 'id') String? fhirId,
  2. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  3. List<FhirExtension>? modifierExtension,
  4. FhirCode? informationType,
  5. @JsonKey(name: '_informationType') Element? informationTypeElement,
  6. FhirMarkdown? summary,
  7. @JsonKey(name: '_summary') Element? summaryElement,
  8. CodeableConcept? type,
  9. List<CodeableConcept>? classifier,
  10. Quantity? quantity,
  11. Reference? author,
  12. List<FhirUri>? path,
  13. @JsonKey(name: '_path') List<Element>? pathElement,
  14. List<RelatedArtifact>? relatedArtifact,
  15. FhirBoolean? freeToShare,
  16. @JsonKey(name: '_freeToShare') Element? freeToShareElement,
  17. List<ArtifactAssessmentContent>? component,
})

ArtifactAssessmentContent This Resource provides one or more comments, classifiers or ratings about a Resource and supports attribution and rights management metadata for the added content.

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

informationType The type of information this component of the content represents.

informationTypeElement ("_informationType") Extensions for informationType

summary A brief summary of the content of this component.

summaryElement ("_summary") Extensions for summary

type Indicates what type of content this component represents.

classifier Represents a rating, classifier, or assessment of the artifact.

quantity A quantitative rating of the artifact.

author Indicates who or what authored the content.

path A URI that points to what the comment is about, such as a line of text in the CQL, or a specific element in a resource.

pathElement ("_path") Extensions for path

relatedArtifact Additional related artifacts that provide supporting documentation, additional evidence, or further information related to the content.

freeToShare Acceptable to publicly share the comment, classifier or rating.

freeToShareElement ("_freeToShare") Extensions for freeToShare

component If the informationType is container, the components of the content.

Implementation

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

  /// [informationType] The type of information this component of the content
  ///  represents.
  FhirCode? informationType,

  /// [informationTypeElement] ("_informationType") Extensions for
  ///  informationType
  @JsonKey(name: '_informationType') Element? informationTypeElement,

  /// [summary] A brief summary of the content of this component.
  FhirMarkdown? summary,

  /// [summaryElement] ("_summary") Extensions for summary
  @JsonKey(name: '_summary') Element? summaryElement,

  /// [type] Indicates what type of content this component represents.
  CodeableConcept? type,

  /// [classifier] Represents a rating, classifier, or assessment of the
  ///  artifact.
  List<CodeableConcept>? classifier,

  /// [quantity] A quantitative rating of the artifact.
  Quantity? quantity,

  /// [author] Indicates who or what authored the content.
  Reference? author,

  /// [path] A URI that points to what the comment is about, such as a line
  ///  of text in the CQL, or a specific element in a resource.
  List<FhirUri>? path,

  /// [pathElement] ("_path") Extensions for path
  @JsonKey(name: '_path') List<Element>? pathElement,

  /// [relatedArtifact] Additional related artifacts that provide supporting
  ///  documentation, additional evidence, or further information related to
  ///  the content.
  List<RelatedArtifact>? relatedArtifact,

  /// [freeToShare] Acceptable to publicly share the comment, classifier or
  ///  rating.
  FhirBoolean? freeToShare,

  /// [freeToShareElement] ("_freeToShare") Extensions for freeToShare
  @JsonKey(name: '_freeToShare') Element? freeToShareElement,

  /// [component] If the informationType is container, the components of the
  ///  content.
  List<ArtifactAssessmentContent>? component,
}) = _ArtifactAssessmentContent;