Beispieldaten entpersonalisiert: generische Staedte statt Gladbeck & Co.

Platzhalter und Doku-Beispiele nannten durchgehend den Wohnort des
Entwicklers (Gladbeck, Bottrop, Gelsenkirchen, Essen), dessen Vorwahl
(02043), PLZ und Strasse. Ersetzt durch Berlin/Hamburg/Muenchen sowie eine
zum Beispielort passende Vorwahl (030). Betrifft die Platzhalter fuer
Telefon/Ort (Vorlagen), die Staedte-Eingabe (Jobsuche), das Adressbeispiel
in den LLM-Notizen, die OpenAPI-Beispiele und zwei Code-Kommentare.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-14 11:14:06 +02:00
co-authored by Claude Opus 4.8
parent 5ce835ff3a
commit e462fa18ad
6 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -443,7 +443,7 @@ function buildOpenApiSpec(baseUrl = '') {
content: {
'application/json': {
schema: { $ref: '#/components/schemas/Settings' },
example: { name: 'Max Mustermann', ort: 'Gladbeck' },
example: { name: 'Max Mustermann', ort: 'Berlin' },
},
},
},
@@ -890,8 +890,8 @@ function buildOpenApiSpec(baseUrl = '') {
adresse: { type: 'string', example: 'Musterstraße 1, 12345 Musterstadt' },
kundennummer: { type: 'string', description: 'Kundennummer beim Jobcenter' },
email: { type: 'string', example: 'max@example.com' },
telefon: { type: 'string', example: '02043 123456' },
ort: { type: 'string', example: 'Gladbeck' },
telefon: { type: 'string', example: '030 12345678' },
ort: { type: 'string', example: 'Berlin' },
webseite: { type: 'string', example: 'example.com' },
geburtsdatum: { type: 'string', example: '01.01.1990' },
},