Overview
Articles are the core legal text units of each framework. Each article has a number, title, content, paragraphs, and associated tags.Methods
list()
get()
related()
iter()
Models
ArticleSummary
| Field | Type | Description |
|---|---|---|
id | int | Internal ID |
frameworkSlug | String | Parent framework (e.g. gdpr) |
number | String | Article number (e.g. 5) |
title | String | Article title |
position | int | Ordering position |
paragraphCount | int | Number of paragraphs |
tags | List<Tag> | Semantic tags |
Article
Extends ArticleSummary with:
| Field | Type | Description |
|---|---|---|
content | String | Full text content |
paragraphs | List<ArticleParagraph> | Structured paragraphs |
ArticleParagraph
| Field | Type | Description |
|---|---|---|
paragraphRef | String | Paragraph reference (e.g. 1, 1a) |
content | String | Paragraph text |
position | int | Ordering position |
