> ## 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.

# Data Governance Act (DGA)

> Regulation (EU) 2022/868 on European Data Governance.

## Overview

| Field        | Value                                                                                          |
| ------------ | ---------------------------------------------------------------------------------------------- |
| **CELEX**    | 32022R0868                                                                                     |
| **Status**   | Active                                                                                         |
| **Articles** | 38                                                                                             |
| **Recitals** | 63                                                                                             |
| **EUR-Lex**  | [View Official Text](https://eur-lex.europa.eu/legal-content/EN/TXT/PDF/?uri=CELEX:32022R0868) |

## Compliance Deadlines

| Date       | Type             | Description                          |
| ---------- | ---------------- | ------------------------------------ |
| 2022-06-23 | Entry into force | Regulation enters into force         |
| 2023-09-24 | Full application | Full application of all requirements |

## Stakeholder Roles

The DGA defines obligations for the following stakeholder roles:

* **manufacturer** - Developers of data intermediation services
* **importer** - Entities bringing data services into the EU
* **distributor** - Data intermediation service providers
* **authorized\_representative** - EU representatives for non-EU providers
* **notified\_body** - Bodies for monitoring data intermediation services
* **market\_surveillance** - National competent authorities
* **consumer** - Data subjects and data holders

## Requirement Types

Requirements in the DGA are classified as:

* **obligation** - Mandatory requirements for data intermediaries
* **prohibition** - Restrictions on data use and governance practices
* **right** - Rights of data holders and data users
* **procedure** - Registration and notification procedures
* **general** - General provisions and definitions

## API Usage

```bash theme={null}
# Get all DGA articles
curl https://api.law4devs.eu/v1/frameworks/dga/articles

# Get DGA framework details
curl https://api.law4devs.eu/v1/frameworks/dga

# Get DGA requirements
curl https://api.law4devs.eu/v1/frameworks/dga/requirements

# Get DGA recitals
curl https://api.law4devs.eu/v1/frameworks/dga/recitals
```

```python theme={null}
# Python SDK
from law4devs import Law4Devs

client = Law4Devs(api_key="your-api-key")

# List all DGA articles
articles = client.articles.list("dga")

# Get DGA requirements by stakeholder role
requirements = client.requirements.list("dga", role="manufacturer")

# Search DGA articles by tag
articles = client.articles.search("dga", query="data intermediary")
```

```typescript theme={null}
// TypeScript SDK
import { Law4Devs } from '@law4devs/sdk';

const client = new Law4Devs({ apiKey: 'your-api-key' });

// List all DGA articles
const articles = await client.articles.list('dga');

// Get DGA requirements by stakeholder role
const requirements = await client.requirements.list('dga', { role: 'manufacturer' });
```

## Key Topics

* Re-use of public sector data (with restrictions)
* Data intermediation services and neutrality requirements
* Data altruism organizations and registration
* European Data Innovation Board
* Cross-sector data governance frameworks
* Technical infrastructure for data sharing
* Protection of commercially sensitive information
