Conformance
Conformance
Three conformance levels define what it means to claim that a system implements ATR. Each level has an associated test suite published as YAML fixtures in the repository.
L1 Engine Conformance Normative
An L1 engine MUST parse every rule that validates against spec/atr-schema.yaml, MUST evaluate detection.conditions with the semantics defined in §3.5, and MUST honor scan_target and status semantics. L1 engines MAY refuse rules outside their declared scan_target.
L2 Publisher Conformance Normative
An L2 publisher publishes rules in a vendor-prefixed sub-range (e.g., ACME-YYYY-NNNNN) that follow all ATR semantics. L2 publishers MUST honor the deprecation policy in §3.7 and SHOULD include test_cases for every published rule.
L3 Sub-range Authority Normative
An L3 sub-range authority is a national or organizational body that mints rules under a sovereign prefix (e.g., ATR-TW-2026-NNNNN). Authority is granted by the ATR TSC following the procedure in /charter §5.
Test Suite
The L1 engine test suite consists of YAML fixtures stored under spec/conformance/ in the main repository. Each fixture pairs a rule with its expected evaluation outcome on a fixed event. An implementation passes if every fixture evaluates as declared.
spec/
└── conformance/
├── L1/
│ ├── 001-basic-match.yaml
│ ├── 002-scan-target-mismatch.yaml
│ ├── 003-status-draft-skip.yaml
│ └── …
├── L2/
│ └── …
└── README.mdEach fixture is a YAML file with three blocks: the target rule, the input event, and the expected evaluation outcome. Engine implementers clone the repo, run the test suite locally, and produce a pass/fail report.
Self-Certification
Implementations self-certify by running the test suite locally and opening a pull request against ADOPTERS.md with the integration metadata. The TSC may verify a self-certification at any time by re-running the suite against a published artifact.
After passing the test suite, implementers open a pull request against ADOPTERS.md ↗, including organization name, spec version, integration date (ISO 8601), a verifiable public evidence link, and a self-declared conformance level. Maintainers typically validate and merge within seven days. The full procedure and the list of merged implementers live at /implementers.