Skip to contents

Påtegninger are public annotations placed on entities by the register keeper to warn third parties of irregularities — missing board members, undelivered accounts, deceased officers. They are the earliest formal signal that an entity is in regulatory trouble, preceding forced dissolution warnings by weeks to months.

Usage

brreg_annotations(
  org_nr = NULL,
  infotype = NULL,
  active_only = TRUE,
  translate = FALSE
)

Arguments

org_nr

Optional character vector of organisation numbers. NULL returns all annotations.

infotype

Optional character vector of annotation type codes to filter by (e.g. "FADR", "NAVN").

active_only

Logical. If TRUE (default), return only annotations currently in force. If FALSE, include cleared annotations from the changelog.

translate

Logical. If TRUE, add an infotype_desc column with English descriptions from annotation_infotypes; unknown codes pass through unchanged. Default FALSE.

Value

A tibble with columns: org_nr, position (array index), infotype, tekst (annotation text), innfoert_dato (date introduced). With translate = TRUE, an infotype_desc column is inserted after infotype.

Details

Requires brreg_sync() to have been run at least once to populate the local påtegninger state.

See also

brreg_sync() to populate annotation data, brreg_changes() to track annotation events over time, annotation_infotypes for the English infotype lookup table.

Other tidybrreg data management functions: brreg_annotation_summary(), brreg_status(), brreg_sync(), brreg_sync_status(), diff_roller_state(), read_changelog()

Examples

if (FALSE) { # interactive()
# \donttest{
brreg_sync()
brreg_annotations()
brreg_annotations(infotype = "FADR")
brreg_annotations(translate = TRUE)
# }
}