Regixo docs
Reference

Glossary

The terms Regixo uses, in plain English. The compliance words carry legal meaning; where a term maps to a specific GDPR or DORA article, the entry says which — so the engineer and the compliance team read the same page.

GDPR & the record

TermMeaning
RoPARecord of Processing Activities — the register GDPR Article 30 requires: how your organisation uses personal data, activity by activity. Regixo auto-drafts it from your real schema.
ControllerThe organisation that decides why and how personal data is used. Under GDPR it owns the RoPA and the legal calls in it.
ProcessorA party that only acts on the controller’s behalf (e.g. a payment provider). It processes, but does not decide the purpose.
GDPR Article 6The six lawful bases for using ordinary personal data: (a) consent, (b) contract, (c) legal obligation, (d) vital interests, (e) public task, (f) legitimate interests. Every activity needs one.
GDPR Article 9The rules for special-category data (health, ethnicity, religion, biometrics, sexual orientation, trade-union membership). Using it needs a separate Art. 9 ground on top of the Art. 6 basis.
GDPR Article 10The rules for criminal-offence data (convictions and offences). A separate class from Art. 9, with its own condition.
Lawful basisThe Art. 6(1) ground that justifies an activity. A legal judgment — Regixo suggests one from the data signals; a named human confirms it.
Special categoryThe Art. 9 data classes above — the most sensitive personal data, handled under stricter rules. Shown on the map as its own count and filter.
Criminal-offence dataData about convictions and offences, governed by Art. 10. Never treated as an Art. 9 ground.
PII / personal dataData about a person — names, emails, ids — the information GDPR protects. Regixo flags the columns that look like personal data, from their names and types — it never reads the values inside.

DORA

TermMeaning
DORADigital Operational Resilience Act — EU rules for financial entities. It requires a register of the ICT third-party providers a firm depends on.
Register of InformationThe DORA register itself — 15 tables covering the entity, its contracts, ICT providers and the functions they support. Regixo auto-fills ~3 of the 15 from the map; the rest are contract facts you enter.
LEILegal Entity Identifier — a 20-character global company id (ISO 17442): 18 alphanumeric characters plus 2 check digits, validated with mod-97. Identifies each provider in the DORA register.

Data & the catalog

TermMeaning
DatasetOne table of data (for example your customers table). VIEWs are catalogued as datasets too.
ColumnA field in a dataset (for example name, email, created_at). The classifier flags a column that looks like personal data from its name and type — never from the values inside.
MetadataData about your data — names, types, owners — not the real values inside. Regixo reads only this.
LineageA recorded data flow from one dataset to another (e.g. Stripe → your users table). Regixo reads it from the warehouse catalog or dbt, or you assert it by hand.
connectionRefThe one field in regixo.yml that names a source’s secret — it holds the name of an environment variable, never the connection string itself.
BYOC / the script connectorBring your own connector — for a source Regixo doesn’t ship. regixo connectors new <name> scaffolds a small generator script; regixo add script --generator <path> --ref <ENV> wires it in. Regixo runs the script as a subprocess on each scan and ingests schema only — names and types, never row values.

Regixo concepts

TermMeaning
DRAFTAn unsigned record, watermarked DRAFT. It is complete and usable, but not yet attested. The whole free build produces drafts.
OFFICIALA record a named person has signed and Regixo has sealed. The DRAFT watermark is gone and an attestation stands behind it. The paid step.
Seal / attestationThe cryptographic proof attached when a record is signed: a signature over the exact record bytes plus who signed and when. In eIDAS terms a simple electronic signature — offline-verifiable, portable, no Regixo server needed.
MCPModel Context Protocol — how an AI assistant reads your catalog. regixo mcp exposes eight read-only tools over stdio; nothing leaves your machine.
Claim / claim linkThe opaque link regixo invite produces. It is the credential: whoever holds it opens the drafted record in the portal, and the first verified sign-in becomes that record’s admin.
Re-signWhen a core RoPA field (purpose, lawful basis, retention, data categories, data subjects, recipients, transfers) changes on an already-signed activity, Regixo flags it for a human to sign again. It never re-signs for you.
ProvenanceThe machine-readable trust signal for the catalog: per-source reachability, staleness, the classifier method used, and the seal status (draft vs official). Read it with regixo status or the get_provenance agent tool.
Terms in the CLI too regixo help prints a short plain-English glossary at its foot, and regixo help --json carries the same list for an agent.