Problem
Currently, the employees field in processed solutions stores employee names as a single string in the name field. This makes it difficult to properly display and format names in the web interface.
Current Structure
{
"employees": [
{
"name": "Max Mustermann"
}
]
}
Proposed Solution
Split the name field into separate firstName and lastName fields to enable better formatting and display options in the web frontend.
Expected Structure
{
"employees": [
{
"firstName": "Max",
"lastName": "Mustermann"
}
]
}
Benefits
- Improved name display flexibility (e.g., "Mustermann, M." or "Max M.")
- Better sorting capabilities by last name
- Consistent name formatting across the web interface
Problem
Currently, the
employeesfield in processed solutions stores employee names as a single string in thenamefield. This makes it difficult to properly display and format names in the web interface.Current Structure
{ "employees": [ { "name": "Max Mustermann" } ] }Proposed Solution
Split the
namefield into separatefirstNameandlastNamefields to enable better formatting and display options in the web frontend.Expected Structure
{ "employees": [ { "firstName": "Max", "lastName": "Mustermann" } ] }Benefits