package vip.mate.wiki.dto; /** * RFC-051 PR-5b: one entry of {@link EnrichmentPlan}. *

* Semantics: *

* Default occurrence is 1 when the LLM omits the field. */ public record EnrichmentReplacement(String original, String replacement, int occurrence) { public EnrichmentReplacement { if (occurrence <= 0) occurrence = 1; } }