namespace Big.Domain;
///
/// Where a zorgprofessional's diploma was issued. It is the input to the diploma-eligibility decision
/// (S-13): a (foreign) diploma routes the registratie through an extra
/// CBGV-advies assessment step, a (domestic) one goes straight to beoordeling.
/// The decision itself lives in the workflow's DMN, not here (ADR-0016); the domain only carries the
/// origin and hands it to the process as a start variable.
///
public enum DiplomaOrigin
{
/// A Dutch (domestic) diploma. Default for a registration submitted via DigiD.
Binnenlands,
/// A foreign diploma (e.g. an eIDAS submission). Triggers the CBGV-advies step.
Buitenlands,
}