avicenna/service/data-hub/business-engine/config.yaml

23 lines
614 B
YAML

port: "8080"
logLevel: "info"
databaseUrl: "postgres://johndoe:randompassword@localhost:5432/avicenna"
# Unsere komplexe, statische Business-Logik-Konfiguration
surchargeRules:
- name: "Nachtzuschlag (Mo-Fr)"
combinationLogic: "TAKE_HIGHEST"
timeConditions:
- weekdays: [1, 2, 3, 4, 5] # Mo, Di, Mi, Do, Fr
startTime: "22:00"
endTime: "06:00"
calculation:
type: "PERCENTAGE"
value: 25.0
- name: "Sonntagszuschlag"
combinationLogic: "TAKE_HIGHEST"
timeConditions:
- weekdays: [0] # Sonntag
calculation:
type: "PERCENTAGE"
value: 50.0