Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

EU Compliance Regulations - NIS2, DORA, GDPR and More

HuggingFace License Language

A comprehensive and bilingual dataset containing complete resources for compliance with essential European regulations: NIS2, DORA, GDPR, AI Act, CRA, PCI-DSS 4, SecNumCloud and HDS.

Overview

This dataset contains:

  • 80+ regulatory requirements with articles, descriptions, deadlines and penalties
  • 50 compliance checklist items with priorities and statuses
  • 50 question-answer pairs in English covering all compliance frameworks
  • ISO 27001 and NIST CSF mappings for each requirement
  • Deep source links to compliance articles from AYI NEDJIMI Consultants

Key Features

1. Regulatory Requirements (80+)

Each requirement includes:

  • Unique ID (e.g., NIS2-001, DORA-002, GDPR-003)
  • Regulatory framework (NIS2, DORA, GDPR, AI Act, CRA, PCI-DSS 4, SecNumCloud, HDS)
  • Article reference (e.g., Art. 6, Art. 32)
  • Title and description in French and English
  • Category (Governance, RiskManagement, IncidentReporting, ServiceContinuity, Testing, DataProtection, Encryption, AccessControl, Audit)
  • Compliance deadline (date or "Ongoing")
  • Penalties for non-compliance (in EUR and percentage)
  • Implementation steps detailed guidance
  • ISO 27001 and NIST CSF mappings

2. Compliance Checklists (50)

Each checklist includes:

  • Unique ID per regulation
  • Check items in French and English
  • Evidence required specific and verifiable
  • Priority (Must, Should, Could)
  • Status options (Compliant, PartiallyCompliant, NonCompliant, NotApplicable)

3. Question-Answers (50)

  • In-depth Q&A covering all frameworks
  • Detailed answers explaining key requirements
  • Deep links to specialized compliance articles
  • Tags for categorization and filtering

Related Resources (Deep Links)

This dataset creates links to 12 specialized articles by AYI NEDJIMI Consultants:

Compliance Articles

  1. NIS2 - Operational Phase 2026 - Complete NIS2 guide with practical checklists
  2. DORA 2026 - Compliance Assessment - DORA analysis for financial institutions
  3. GDPR 2026 - Security and CNIL - Data protection and CNIL notifications
  4. ISO 27001 - Complete Guide - Information security management
  5. PCI-DSS 4 - 2026 Guide - Payment data security
  6. AI Act 2026 - AI Compliance - Regulation of high-risk AI systems
  7. Cyber Resilience Act 2026 - Security obligations for connected products
  8. HDS 2026 - Healthcare Certification - Healthcare data hosting
  9. SecNumCloud 2026 - EUCS - Trusted cloud infrastructure
  10. SBOM 2026 - Security Obligation - Software Bill of Materials
  11. Cyber Insurance 2026 - Requirements - Cyber insurance and coverage
  12. NIS2 Whitepaper - Complete resource with implementation strategies

Regulatory Frameworks Covered

NIS2 (Network and Information Systems Directive 2)

  • Effective date: October 17, 2024
  • Essential and important operators
  • Risk management and service continuity
  • Incident reporting within 24 hours

DORA (Digital Operational Resilience Act)

  • Effective date: January 17, 2025
  • Financial institutions and service operators
  • Operational resilience testing
  • Critical ICT service provider management

GDPR (General Data Protection Regulation)

  • Since May 2018
  • Personal data protection
  • Breach notification within 72 hours
  • Individual rights and DPIA

AI Act (Artificial Intelligence Regulation)

  • Phased implementation 2025-2026
  • High-risk AI systems
  • Transparency and documentation
  • Training data management

CRA (Cyber Resilience Act)

  • Effective: December 2025
  • Connected products and software
  • Vulnerability management
  • Security updates

PCI-DSS 4

  • Payment and transaction data
  • Strict security controls
  • Encryption and authentication
  • Audit and compliance

SecNumCloud

  • French cloud certification
  • Approved trusted infrastructure
  • Data isolation
  • Data reversibility

HDS (Healthcare Data Hosting)

  • Certification for health providers
  • Sensitive medical data
  • Enhanced security
  • Regular audits

ISO 27001

  • Information security management
  • 14 domains and 93 controls
  • International framework

Dataset Structure

compliance-eu/
├── data_requirements.py      # 80+ regulatory requirements
├── data_checklists.py        # 50 checklist items
├── data_qa_fr.py            # 50 Q&A in French
├── data_qa_en.py            # 50 Q&A in English
├── generate_dataset.py       # Generation script
├── upload_to_hf.py          # HuggingFace upload
├── README.md                # French documentation
└── README_en.md             # English documentation

Data Fields

Requirements

{
    "id": "NIS2-001",
    "regulation": "NIS2",
    "article_ref": "Art. 6",
    "title_fr": "Obligation de sécurité...",
    "title_en": "Obligation to secure...",
    "description_fr": "...",
    "description_en": "...",
    "category": "Governance",
    "deadline": "2024-10-17",
    "penalty_fr": "Amendes jusqu'à 3%...",
    "penalty_en": "Fines up to 3%...",
    "implementation_steps_fr": [...],
    "implementation_steps_en": [...],
    "iso27001_mapping": ["A.12.6", "A.13.1"],
    "nist_csf_mapping": ["PR.AC", "PR.PT"]
}

Checklists

{
    "id": "NIS2-CHECK-001",
    "regulation": "NIS2",
    "category": "Governance",
    "check_item_fr": "...",
    "check_item_en": "...",
    "evidence_required_fr": "...",
    "evidence_required_en": "...",
    "priority": "Must",
    "status_options": ["Compliant", "PartiallyCompliant", "NonCompliant", "NotApplicable"]
}

Q&A

{
    "id": "NIS2-QA-001",
    "regulation": "NIS2",
    "question_en": "What is NIS2...?",
    "answer_en": "NIS2 is...",
    "source_url": "https://ayinedjimi-consultants.fr/articles/conformite/nis-2-phase-operationnelle-2026.html",
    "tags": ["NIS2", "cybersecurity", "directive"]
}

Usage

Download and Use

from datasets import load_dataset

# Load French dataset
dataset_fr = load_dataset("AYI-NEDJIMI/compliance-eu-fr")

# Load English dataset
dataset_en = load_dataset("AYI-NEDJIMI/compliance-eu-en")

# Access the data
requirements = dataset_en['requirements']
checklists = dataset_en['checklists']
qa = dataset_en['qa']

Local Generation

# Generate French dataset
python generate_dataset.py fr

# Generate English dataset
python generate_dataset.py en

# JSON and Parquet files will be created

Upload to HuggingFace

# Set HF token
export HF_TOKEN="your_hf_token"

# Upload both versions
python upload_to_hf.py both

# Or upload specific language
python upload_to_hf.py fr
python upload_to_hf.py en

Tags and Categories

Regulatory Frameworks

  • NIS2
  • DORA
  • RGPD / GDPR
  • AI_Act
  • CRA
  • PCI_DSS_4
  • SecNumCloud
  • HDS
  • ISO_27001

Requirement Categories

  • Governance
  • RiskManagement
  • IncidentReporting
  • SupplyChain
  • Testing
  • DataProtection
  • BCM (Business Continuity Management)
  • Encryption
  • AccessControl
  • Audit

Checklist Priorities

  • Must (Mandatory)
  • Should (Recommended)
  • Could (Optional)

Compliance Mappings

Each requirement includes mappings to:

  • ISO 27001 - Security control references (A.5 to A.18)
  • NIST CSF - NIST Functions (Identify, Protect, Detect, Respond, Recover)

Sources and References

Author: AYI NEDJIMI Consultants

Website: https://ayinedjimi-consultants.fr

Whitepaper: NIS2 Whitepaper

Dataset Versions

  • Version: 1.0.0
  • Date: 2026-02-13
  • Languages: French (FR) and English (EN)
  • Total records: 180+ (80+ requirements + 50 checklists + 50 Q&A)

Collections

Tags

Main tags: nis2, dora, gdpr, compliance, iso-27001, cybersecurity, eu-regulation, data-protection, regulatory-requirements, compliance-checklist, ayinedjimi-consultants, french, english, bilingual

Domains: regulation, cybersecurity, compliance, data-protection, financial-services, healthcare, cloud-security, artificial-intelligence, supply-chain

License

This dataset is available under the CC-BY-4.0 license. You must attribute AYI NEDJIMI Consultants when using this dataset.

Contribution

For suggestions, corrections or contributions, please contact AYI NEDJIMI Consultants via their profile page.

Disclaimer

This dataset is provided for informational purposes. Information should be verified with official sources and legal/technical experts before being used for critical compliance decisions.


Developed by: AYI NEDJIMI Consultants More information: https://ayinedjimi-consultants.fr

Author

Ayi NEDJIMI - Cybersecurity Consultant & Trainer | AI Expert

Related Articles

Free Cybersecurity Resources

Part of the Collection

This dataset is part of the Cybersecurity Datasets & Tools Collection by AYI-NEDJIMI Consultants.

Downloads last month
30

Space using AYI-NEDJIMI/compliance-eu-en 1

Collections including AYI-NEDJIMI/compliance-eu-en