Qualification Mapping
Note
Configuration can be managed in two ways:
- Preferred: via the browser-based StaffSchedulingWeb interface.
- Advanced/manual: by editing the JSON files in the case folder directly.
For month-based cases, files are usually located in cases/{case_id}/{MM_YYYY}/... (for example cases/77/11_2024/...).
Mapping of Qualifications¶
In our application, qualifications are mapped to specific employee types to ensure proper categorization and management of personnel. This mapping is stored in employee_types.json in the active case folder, typically:
cases/{case_id}/{MM_YYYY}/employee_types.jsonfor month-based casescases/{case_id}/employee_types.jsonfor non-month cases
The structure of this JSON file is as follows:
{
"Azubi": [
"A-Pflegefachkraft (Krankenpflege) (A-81302-018)",
"A-Pflegeassistent/in (A-81302-014)"
],
"Fachkraft": [
"Pflegefachkraft (Krankenpflege) (81302-018)",
"Gesundheits- und Krankenpfleger/in (81302-005)",
"Krankenschwester/-pfleger (81302-008)",
"Altenpfleger/in (82102-002)"
],
"Hilfskraft": [
"Krankenpflegehelfer/in (1 jährige A.) (81301-006)",
"Pflegeassistent/in (81302-014)",
"Helfer/in - stationäre Krankenpflege (81301-002)",
"Stationshilfe (81301-018)",
"Bundesfreiwilligendienst (BFD)",
"Medizinische/r Fachangestellte/r (81102-004)"
]
}
In this configuration, each employee type—such as Azubi, Fachkraft, and Hilfskraft—is associated with relevant qualifications.