I'm trying to add a note to a SharePoint List named NoteList. NoteList is defined as:

NoteList includes a Lookup Column, TicketID, which is related to the List TicketList where TicketList.ID is the unique identifier.
I've got a screen designed to add notes regarding a specific ticket. The screen I'm working from is called from a display of open tickets. The parent record (from TicketList) is defined as SelectedTicket. The screen that I'm working on includes these controls with the following attributes:
WorkTicketTicketID (text input with SelectedTicket.ID as it's Text attribute)
WorkTicketNoteTypeRadio (radio control with items defined as ["Internal","External"])
NewNoteInput (TextInput control where freeform note is entered)
I'm trying to patch this information to the NoteList SharePoint list with the following code:
Patch(NoteList,
{TicketID:SelectedTicket.ID,
DateTime:Now(),
NoteText:NewNoteInput.Value,
NoteType:WorkTicketNoteTypeRadio.Selected,
EnteredBy:CurrentUserEmail.ID
*/ }
);.
I'm having trouble with the proper syntax for the TicketID column. I get the following error:

I've tried a number of variations but can't land on the appropriate syntax.
Thank you in advance.