Skip to content

Instantly share code, notes, and snippets.

View OlivierVanEester's full-sized avatar

Olivier Van Eester OlivierVanEester

  • Olivier Van Eester
  • Belgium
View GitHub Profile
@OlivierVanEester
OlivierVanEester / email_draft_schema.json
Last active October 4, 2025 22:30
Structured schema for generating short, polite Dutch emails to job candidates. Includes subject, greeting, body_text, control_token, and a stringified JSON copy (em_json). Ensures consistent storage and validation across follow-up conversations.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EmailDraftSchema_TextOnly_WithFirstName",
"description": "Plain-text Dutch (nl-BE) email draft to a candidate with extracted first name.",
"type": "object",
"properties": {
"email": {
"type": "object",
"properties": {
"subject": { "type": "string", "minLength": 3, "maxLength": 140 },