I basically have a usecase where each employee can have multiple certifications which expire at different dates.
How can this be represented in the employee data? Example of what I would want to do
- Certification [Multi select]
- Completed [Date]
- Expires [Date]
- Certification [Multi select]
- Completed [Date]
- Expires [Date]
…
The problem is, that each of these would all need to be different fields in the employee data. Statically repeating the block over and over in employee data is pretty messy and is confusing for employees.
Is there a different feature I can use for this purpose? The biggest issue is, that I need to retrieve the data through the API.