pub struct AnnotationInner {
pub id: Option<String>,
pub extension: Vec<Extension>,
pub author: Option<AnnotationAuthor>,
pub author_ext: Option<AnnotationAuthorExtension>,
pub time: Option<DateTime>,
pub time_ext: Option<FieldExtension>,
pub text: String,
pub text_ext: Option<FieldExtension>,
}
Expand description
Annotation Type: A text note which also contains information about who made the statement and when.
Annotation v5.0.0
Text node with attribution
A text note which also contains information about who made the statement and when.
For systems that do not have structured annotations, they can simply communicate a single annotation with no author or time. This element may need to be included in narrative because of the potential for modifying information. Annotations SHOULD NOT be used to communicate “modifying” information that could be computable. (This is a SHOULD because enforcing user behavior is nearly impossible).
Fields§
§id: Option<String>
Unique id for inter-element referencing
Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces.
extension: Vec<Extension>
Additional content defined by implementations
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.
There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone.
Individual responsible for the annotation
The individual responsible for making the annotation.
Organization is used when there’s no need for specific attribution as to who made the comment.
Extension field.
time: Option<DateTime>
When the annotation was made
Indicates when this particular annotation was made.
time_ext: Option<FieldExtension>
Extension field.
text: String
The annotation - text content (as markdown)
The text of the annotation in markdown format.
text_ext: Option<FieldExtension>
Extension field.
Trait Implementations§
Source§impl Clone for AnnotationInner
impl Clone for AnnotationInner
Source§fn clone(&self) -> AnnotationInner
fn clone(&self) -> AnnotationInner
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more