Device constructor

const Device({
  1. @Default(R4ResourceType.Device) @JsonKey(unknownEnumValue: R4ResourceType.Device) R4ResourceType resourceType,
  2. @JsonKey(includeFromJson: true, includeToJson: false) int? dbId,
  3. @JsonKey(name: 'id') String? fhirId,
  4. FhirMeta? meta,
  5. FhirUri? implicitRules,
  6. @JsonKey(name: '_implicitRules') Element? implicitRulesElement,
  7. FhirCode? language,
  8. @JsonKey(name: '_language') Element? languageElement,
  9. Narrative? text,
  10. List<Resource>? contained,
  11. @JsonKey(name: 'extension') List<FhirExtension>? extension_,
  12. List<FhirExtension>? modifierExtension,
  13. List<Identifier>? identifier,
  14. Reference? definition,
  15. List<DeviceUdiCarrier>? udiCarrier,
  16. FhirCode? status,
  17. @JsonKey(name: '_status') Element? statusElement,
  18. List<CodeableConcept>? statusReason,
  19. String? distinctIdentifier,
  20. @JsonKey(name: '_distinctIdentifier') Element? distinctIdentifierElement,
  21. String? manufacturer,
  22. @JsonKey(name: '_manufacturer') Element? manufacturerElement,
  23. FhirDateTime? manufactureDate,
  24. @JsonKey(name: '_manufactureDate') Element? manufactureDateElement,
  25. FhirDateTime? expirationDate,
  26. @JsonKey(name: '_expirationDate') Element? expirationDateElement,
  27. String? lotNumber,
  28. @JsonKey(name: '_lotNumber') Element? lotNumberElement,
  29. String? serialNumber,
  30. @JsonKey(name: '_serialNumber') Element? serialNumberElement,
  31. List<DeviceDeviceName>? deviceName,
  32. String? modelNumber,
  33. @JsonKey(name: '_modelNumber') Element? modelNumberElement,
  34. String? partNumber,
  35. @JsonKey(name: '_partNumber') Element? partNumberElement,
  36. CodeableConcept? type,
  37. List<DeviceSpecialization>? specialization,
  38. List<DeviceVersion>? version,
  39. List<DeviceProperty>? property,
  40. Reference? patient,
  41. Reference? owner,
  42. List<ContactPoint>? contact,
  43. Reference? location,
  44. FhirUri? url,
  45. @JsonKey(name: '_url') Element? urlElement,
  46. List<Annotation>? note,
  47. List<CodeableConcept>? safety,
  48. Reference? parent,
})

Device A type of a manufactured item that is used in the provision of healthcare without being substantially changed through that activity. The device may be a medical or non-medical device.

resourceType This is a Device resource

id The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes.

meta The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.

implicitRules A reference to a set of rules that were followed when the resource was constructed, and which must be understood when processing the content. Often, this is a reference to an implementation guide that defines the special rules along with other profiles etc.

implicitRulesElement Extensions for implicitRules

language The base language in which the resource is written.

languageElement Extensions for language

text A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what content should be represented in the narrative to ensure clinical safety.

contained These resources do not have an independent existence apart from the resource that contains them - they cannot be identified independently, and nor can they have their own independent transaction scope.

extension_ May be used to represent additional information that is not part of the basic definition of the resource. To make the use of extensions safe and manageable, 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 resource and that modifies the understanding of the element that contains it 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 manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer is allowed to 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).

identifier Unique instance identifiers assigned to a device by manufacturers other organizations or owners.

definition The reference to the definition for the device.

udiCarrier Unique device identifier (UDI) assigned to device label or package. Note that the Device may include multiple udiCarriers as it either may include just the udiCarrier for the jurisdiction it is sold, or for multiple jurisdictions it could have been sold.

status Status of the Device availability.

statusElement Extensions for status

statusReason Reason for the dtatus of the Device availability.

distinctIdentifier The distinct identification string as required by regulation for a human cell, tissue, or cellular and tissue-based product.

distinctIdentifierElement Extensions for distinctIdentifier

manufacturer A name of the manufacturer.

manufacturerElement Extensions for manufacturer

manufactureDate The date and time when the device was manufactured.

manufactureDateElement Extensions for manufactureDate

expirationDate The date and time beyond which this device is no longer valid or should not be used (if applicable).

expirationDateElement Extensions for expirationDate

lotNumber Lot number assigned by the manufacturer.

lotNumberElement Extensions for lotNumber

serialNumber The serial number assigned by the organization when the device was manufactured.

serialNumberElement Extensions for serialNumber

deviceName This represents the manufacturer's name of the device as provided by the device, from a UDI label, or by a person describing the Device. This typically would be used when a person provides the name(s) or when the device represents one of the names available from DeviceDefinition.

modelNumber The model number for the device.

modelNumberElement Extensions for modelNumber

partNumber The part number of the device.

partNumberElement Extensions for partNumber

type The kind or type of device.

specialization The capabilities supported on a device, the standards to which the device conforms for a particular purpose, and used for the communication.

version The actual design of the device or software version running on the device.

property The actual configuration settings of a device as it actually operates, e.g., regulation status, time properties.

patient Patient information, If the device is affixed to a person.

owner An organization that is responsible for the provision and ongoing maintenance of the device.

contact Contact details for an organization or a particular human that is responsible for the device.

location The place where the device can be found.

url A network address on which the device may be contacted directly.

urlElement Extensions for url

note Descriptive information, usage information or implantation information that is not captured in an existing element.

safety Provides additional safety characteristics about a medical device. For example devices containing latex.

parent The parent device.

Implementation

const factory Device({
  @Default(R4ResourceType.Device)
  @JsonKey(unknownEnumValue: R4ResourceType.Device)

  /// [resourceType] This is a Device resource
  R4ResourceType resourceType,
  @JsonKey(includeFromJson: true, includeToJson: false) int? dbId,

  /// [id] The logical id of the resource, as used in the URL for the resource.
  ///  Once assigned, this value never changes.
  @JsonKey(name: 'id') String? fhirId,

  /// [meta] The metadata about the resource. This is content that is
  /// maintained by the infrastructure. Changes to the content might not always
  ///  be associated with version changes to the resource.
  FhirMeta? meta,

  /// [implicitRules] A reference to a set of rules that were followed when the
  /// resource was constructed, and which must be understood when processing the
  /// content. Often, this is a reference to an implementation guide that
  ///  defines the special rules along with other profiles etc.
  FhirUri? implicitRules,

  /// [implicitRulesElement] Extensions for implicitRules
  @JsonKey(name: '_implicitRules') Element? implicitRulesElement,

  /// [language] The base language in which the resource is written.
  FhirCode? language,

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

  /// [text] A human-readable narrative that contains a summary of the resource
  /// and can be used to represent the content of the resource to a human. The
  /// narrative need not encode all the structured data, but is required to
  /// contain sufficient detail to make it "clinically safe" for a human to just
  /// read the narrative. Resource definitions may define what content should be
  ///  represented in the narrative to ensure clinical safety.
  Narrative? text,

  /// [contained] These resources do not have an independent existence apart
  /// from the resource that contains them - they cannot be identified
  /// independently, and nor can they have their own independent transaction
  ///  scope.
  List<Resource>? contained,

  /// [extension_] May be used to represent additional information that is not
  /// part of the basic definition of the resource. To make the use of
  /// extensions safe and manageable, 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 resource and that modifies the
  /// understanding of the element that contains it 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
  /// manageable, there is a strict set of governance applied to the definition
  /// and use of extensions. Though any implementer is allowed to 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,

  /// [identifier] Unique instance identifiers assigned to a device by
  ///  manufacturers other organizations or owners.
  List<Identifier>? identifier,

  /// [definition] The reference to the definition for the device.
  Reference? definition,

  /// [udiCarrier] Unique device identifier (UDI) assigned to device label or
  /// package.  Note that the Device may include multiple udiCarriers as it
  /// either may include just the udiCarrier for the jurisdiction it is sold, or
  ///  for multiple jurisdictions it could have been sold.
  List<DeviceUdiCarrier>? udiCarrier,

  /// [status] Status of the Device availability.
  FhirCode? status,

  /// [statusElement] Extensions for status
  @JsonKey(name: '_status') Element? statusElement,

  /// [statusReason] Reason for the dtatus of the Device availability.
  List<CodeableConcept>? statusReason,

  /// [distinctIdentifier] The distinct identification string as required by
  /// regulation for a human cell, tissue, or cellular and tissue-based
  ///  product.
  String? distinctIdentifier,

  /// [distinctIdentifierElement] Extensions for distinctIdentifier
  @JsonKey(name: '_distinctIdentifier') Element? distinctIdentifierElement,

  /// [manufacturer] A name of the manufacturer.
  String? manufacturer,

  /// [manufacturerElement] Extensions for manufacturer
  @JsonKey(name: '_manufacturer') Element? manufacturerElement,

  /// [manufactureDate] The date and time when the device was manufactured.
  FhirDateTime? manufactureDate,

  /// [manufactureDateElement] Extensions for manufactureDate
  @JsonKey(name: '_manufactureDate') Element? manufactureDateElement,

  /// [expirationDate] The date and time beyond which this device is no longer
  ///  valid or should not be used (if applicable).
  FhirDateTime? expirationDate,

  /// [expirationDateElement] Extensions for expirationDate
  @JsonKey(name: '_expirationDate') Element? expirationDateElement,

  /// [lotNumber] Lot number assigned by the manufacturer.
  String? lotNumber,

  /// [lotNumberElement] Extensions for lotNumber
  @JsonKey(name: '_lotNumber') Element? lotNumberElement,

  /// [serialNumber] The serial number assigned by the organization when the
  ///  device was manufactured.
  String? serialNumber,

  /// [serialNumberElement] Extensions for serialNumber
  @JsonKey(name: '_serialNumber') Element? serialNumberElement,

  /// [deviceName] This represents the manufacturer's name of the device as
  /// provided by the device, from a UDI label, or by a person describing the
  /// Device.  This typically would be used when a person provides the name(s)
  /// or when the device represents one of the names available from
  ///  DeviceDefinition.
  List<DeviceDeviceName>? deviceName,

  /// [modelNumber] The model number for the device.
  String? modelNumber,

  /// [modelNumberElement] Extensions for modelNumber
  @JsonKey(name: '_modelNumber') Element? modelNumberElement,

  /// [partNumber] The part number of the device.
  String? partNumber,

  /// [partNumberElement] Extensions for partNumber
  @JsonKey(name: '_partNumber') Element? partNumberElement,

  /// [type] The kind or type of device.
  CodeableConcept? type,

  /// [specialization] The capabilities supported on a  device, the standards
  /// to which the device conforms for a particular purpose, and used for the
  ///  communication.
  List<DeviceSpecialization>? specialization,

  /// [version] The actual design of the device or software version running on
  ///  the device.
  List<DeviceVersion>? version,

  /// [property] The actual configuration settings of a device as it actually
  ///  operates, e.g., regulation status, time properties.
  List<DeviceProperty>? property,

  /// [patient] Patient information, If the device is affixed to a person.
  Reference? patient,

  /// [owner] An organization that is responsible for the provision and ongoing
  ///  maintenance of the device.
  Reference? owner,

  /// [contact] Contact details for an organization or a particular human that
  ///  is responsible for the device.
  List<ContactPoint>? contact,

  /// [location] The place where the device can be found.
  Reference? location,

  /// [url] A network address on which the device may be contacted directly.
  FhirUri? url,

  /// [urlElement] Extensions for url
  @JsonKey(name: '_url') Element? urlElement,

  /// [note] Descriptive information, usage information or implantation
  ///  information that is not captured in an existing element.
  List<Annotation>? note,

  /// [safety] Provides additional safety characteristics about a medical
  ///  device.  For example devices containing latex.
  List<CodeableConcept>? safety,

  /// [parent] The parent device.
  Reference? parent,
}) = _Device;