The ACL now writes the domain registrationId as the zaak's identificatie on POST /zaken, and exposes GET-through POST /zaken/reference to read a zaak's identificatie back. Only the ACL touches ZGW (§8.1); the reference is the single value shown on both the self-service confirmation and the openbaar register. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
6 lines
310 B
C#
6 lines
310 B
C#
namespace Acl.Application;
|
|
|
|
/// <summary>Domain-language payload handed to the ACL. No ZGW concepts here. <see cref="Reference"/>
|
|
/// is the registration's own id; the ACL records it as the zaak identificatie (adr-proposal #78).</summary>
|
|
public sealed record DomainRegistration(string Bsn, string Reference);
|