pub struct CareNote {
pub id: Id,
pub subject: Subject,
pub kind: Kind,
pub visibility: Visibility,
pub body: Body,
pub author: ActorRef,
pub recorded_at: DateTime<Utc>,
pub audit_refs: Vec<EventId>,
}Expand description
Care note with author, visibility, subject, body, source, and review-sensitive timestamps.
Fields§
§id: IdId retained from source records for staff review, safety gates, and workflow joins.
subject: SubjectSubject retained from source records for staff review, safety gates, and workflow joins.
kind: KindKind retained from source records for staff review, safety gates, and workflow joins.
visibility: VisibilityVisibility retained from source records for staff review, safety gates, and workflow joins.
body: BodyBody retained from source records for staff review, safety gates, and workflow joins.
Author retained from source records for staff review, safety gates, and workflow joins.
recorded_at: DateTime<Utc>Recorded at retained from source records for staff review, safety gates, and workflow joins.
audit_refs: Vec<EventId>Audit refs retained from source records for staff review, safety gates, and workflow joins.