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 track the key enforcement dates, transition periods, and application dates for each regulation. Useclient.compliance() to access them.
Methods
deadlines()
Returns the first page of compliance deadlines across all frameworks.
Page<ComplianceDeadline>
deadlines(String frameworkSlug)
Returns the first page of deadlines scoped to one framework.
Page<ComplianceDeadline>
deadlines(String frameworkSlug, int page, int perPage)
Fetch a specific page with custom page size.
| Parameter | Type | Default | Description |
|---|---|---|---|
frameworkSlug | String | null | Scope to one framework (optional) |
page | int | 1 | Page number (1-indexed) |
perPage | int | 20 | Items per page (max 100) |
Page<ComplianceDeadline>
iterDeadlines()
Lazily iterate all compliance deadlines across all frameworks.
Iterable<ComplianceDeadline>
iterDeadlines(String frameworkSlug)
Lazily iterate all deadlines for a specific framework.
Iterable<ComplianceDeadline>
Model
ComplianceDeadline
| Field | Type | Description |
|---|---|---|
id() | int | Internal numeric ID |
frameworkSlug() | String | Parent framework slug |
frameworkName() | String | Human-readable framework name |
date() | String | ISO 8601 deadline date |
description() | String | What must be complied with by this date |
deadlineType() | String | e.g. "enforcement", "transition", "application" |
articleReference() | String | Source article or recital reference |
