I am ingesting process sequence data from a CSV file into a Lucid AI prompt as the data source.
Schema sample of the data is as follows:

The prompt to create the flowchart is:
create page BPMN01
create a flowchart using the attached data in BPMN01.csv on page BPMN01
pool = Aerospace Process
swimlane = Lane_Role
The following columns in the data are to map to flowchart objects as:
Shape Library = Flowchart
Page ID = BPMN01
ID = task_id
Name = Process
Text Area 1 = Activity_Name
Custom Data Field: Software = Resource_Software
Custom Data Field: Equipment = Resource_Equipment
Custom Data Field: Role = Lane_Role
Custom Data Field: Start = Start_Time_Days
Custom Data Field: End = End_Time_Days
Flowchart Sequence:
from = predecessor_task_id
to = task_id
Name = Line
Line Source = predecessor_task_id
Line Destination = task_id
Source Arrow = None
Destination Arrow = Arrow
it does produce something of a flowchart:

but does not include:
- any custom metadata like: Software = Resource_Software
- does not create the pool = Aerospace Process
- swimlane = column Lane_Role
Please advise on proper attribute mapping so that the above will create:
- flowchart process objects in the pool/swimlane as specified
- each flowchart process object will have the additional custom metadata as specified in the prompt
- how to create with custom flowchart shape objects that would have additional metadata displayed on the object such as: Resource_Software
Thank you