Initial commit: breakpilot-compliance - Compliance SDK Platform
Services: Admin-Compliance, Backend-Compliance, AI-Compliance-SDK, Consent-SDK, Developer-Portal, PCA-Platform, DSMS Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
22
backend-compliance/compliance/data/__init__.py
Normal file
22
backend-compliance/compliance/data/__init__.py
Normal file
@@ -0,0 +1,22 @@
|
||||
"""
|
||||
Seed data for Compliance module.
|
||||
|
||||
Contains initial data for:
|
||||
- 16 EU Regulations + 3 BSI-TR documents
|
||||
- ~45 Controls across 9 domains
|
||||
- Key requirements from GDPR, AI Act, CRA
|
||||
- ISO 27001:2022 Annex A (93 Controls)
|
||||
"""
|
||||
|
||||
from .regulations import REGULATIONS_SEED
|
||||
from .controls import CONTROLS_SEED
|
||||
from .requirements import REQUIREMENTS_SEED
|
||||
from .iso27001_annex_a import ISO27001_ANNEX_A_CONTROLS, ANNEX_A_SUMMARY
|
||||
|
||||
__all__ = [
|
||||
"REGULATIONS_SEED",
|
||||
"CONTROLS_SEED",
|
||||
"REQUIREMENTS_SEED",
|
||||
"ISO27001_ANNEX_A_CONTROLS",
|
||||
"ANNEX_A_SUMMARY",
|
||||
]
|
||||
Reference in New Issue
Block a user