Documentation Index
Fetch the complete documentation index at: https://docs.law4devs.eu/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Compliance deadlines are specific dates by which organisations must have completed certain obligations under a regulation. They are extracted from articles and classified by type (e.g."transposition", "application", "notification").
Methods
deadlines()
Returns a page of compliance deadlines, optionally filtered to a single framework.
| Parameter | Type | Default | Description |
|---|---|---|---|
frameworkSlug | string | — | Filter to a specific framework |
page | number | 1 | Page number |
perPage | number | 20 | Items per page (1–100) |
Promise<Page<ComplianceDeadline>>
iterDeadlines()
Iterate over all compliance deadlines without managing pagination.
The method is
iterDeadlines(), not iter(). This is intentional — the compliance resource covers deadlines across multiple frameworks rather than scoping to a single one.deadlines() (except page, which is managed internally).
Returns AsyncGenerator<ComplianceDeadline>
Model
ComplianceDeadline
| Field | Type | Description |
|---|---|---|
id | number | Internal numeric ID |
frameworkSlug | string | Parent framework slug |
articleNumber | number | Source article number |
paragraphRef | string | null | Source paragraph reference |
deadlineDate | string | null | ISO 8601 deadline date, or null if ongoing |
deadlineType | string | Category, e.g. "transposition", "application", "notification" |
description | string | Human-readable description of the obligation |
