Skip to main content
Sector8 can support GDPR workflows at two points in the flow when your runtime routes proposed actions through it:
  • before execution, by blocking risky tool calls at the admission boundary
  • after execution, by redacting sensitive telemetry before it is stored
Sector8 does not make your organization GDPR-compliant by itself. Use these controls as part of a broader privacy program with legal review.

Where GDPR controls apply

Coverage applies to tool calls and telemetry your runtime routes through Sector8. Unconnected paths are not automatically covered.

GDPR controls mapped to shipped behavior

What gets detected

The GDPR pack is pattern-based. It is designed to catch common high-risk identifiers in tool arguments and telemetry, not to make broad semantic legal judgments. Examples include:
  • email addresses
  • phone numbers
  • dates of birth
  • national identifiers
  • financial account patterns
Sector8’s GDPR scoring and enforcement are operational controls, not a certified legal assessment. Use them as guardrails inside a broader privacy program.

What a GDPR denial looks like

When a routed tool call is denied for data minimisation, the public response shape includes:
Your runtime must honor the decision: execute only on ALLOW, block on DENY, and fail closed on missing, unknown, or failed evaluate results.

How to verify GDPR controls

  1. Send a known PII-bearing tool call through POST /api/v1/evaluate.
  2. Confirm the response returns DENY with GDPR_DATA_MINIMISATION_VIOLATION and that your runtime does not dispatch.
  3. Optionally send a completed interaction through POST /api/v1/telemetry.
  4. Confirm stored telemetry is redacted when that path is enabled and evidence linkage is present.
You are done when a risky routed tool call is blocked before execution, your runtime honors the DENY, and corresponding evidence fields are present for audit.