Interface BaseEntity

Represents the base structure for an entity.

interface BaseEntity {
    code: "BUR" | "VER" | "EA" | "GID" | "LB" | "OV";
    identifier?: string;
    name: string;
}

Hierarchy (View Summary)

Properties

Properties

code: "BUR" | "VER" | "EA" | "GID" | "LB" | "OV"

The code representing the type of entity. Possible values are:

  • 'BUR': Burgerprofiel
  • 'VER': Verenigingsloket
  • 'EA': eLoket Ondernemers (Economische Actor)
  • 'GID': Gemeenschappelijke Identificatiedienst
  • 'LB': Lokale besturen
  • 'OV': Openbare instellingen
identifier?: string

An optional identifier for the entity.

name: string

The name of the entity.