Skip to main content

Overview

Articles are the numbered provisions within each regulation. Use client.articles() to list, fetch, and iterate articles for any framework.

Methods

list(String frameworkSlug)

Returns the first page of articles for a framework.
Returns Page<ArticleSummary>

list(String frameworkSlug, int page, int perPage)

Fetch a specific page with custom page size.
Parameters Returns Page<ArticleSummary>

get()

Fetch full detail for a single article including all paragraphs.
Parameters Returns Article
Fetch articles related to a given article (cross-references).
Returns Page<ArticleSummary>

iter()

Lazily iterate all articles for a framework.
Returns Iterable<ArticleSummary>

Models

ArticleSummary

Returned by list(), related(), and iter().

Article

Returned by get(). Includes all ArticleSummary fields plus:

ArticleParagraph


Examples

Find articles containing specific obligations

Collect all DORA articles into a list