A line in someone else's stock
Under Section 13(d) of the Securities Exchange Act, the moment an investor acquires beneficial ownership of more than five percent of a class of a public company's voting equity, a disclosure obligation attaches. They must file a Schedule 13D with the SEC, naming themselves, their holding, and their intentions. The five percent line is one of the oldest and most stable thresholds in securities law. Below it, you are an anonymous shareholder. Above it, you are a matter of public record, because at that size your intentions can move a company.
The obligation has two moving parts, and they are the two parts every disclosure rule has. A threshold that was crossed, and a window to act once it was. Cross five percent, and the clock to file begins.
The threshold and the clock
{
"rule_id": "SEC-DISC-US-001",
"title": "Beneficial ownership crosses 5%: Schedule 13D due",
"jurisdiction": "us",
"source": "Securities Exchange Act §13(d); Rule 13d-1",
"severity": "block",
"expected_outcome": {
"action": "review",
"message": "Beneficial ownership of a voting equity class crossed 5%. A Schedule 13D is due within the statutory window from the acquisition that crossed the line. Confirm whether a filing was made and whether it was timely."
},
"conditions": [
{ "type": "threshold_crossed", "path": "holding.beneficial_ownership_pct", "value": 5.0 },
{ "type": "deadline_window", "from": "holding.threshold_crossed_at", "to": "filing.submitted_at", "max_days": 5, "day_basis": "business" }
],
"deterministic": true,
"validation_status": "expert_reviewed"
}
Two conditions. The threshold crossing and the filing window. And here is the detail that shows why the threshold and the window must be kept apart from the logic: the window changed. For decades the initial Schedule 13D was due within ten calendar days of crossing the line. In 2024 the SEC shortened it to five business days. The threshold did not move. The form did not change. One number in one field changed, and the obligation it lives inside stayed exactly the same.
A rule that hard-coded "ten days" into its logic would have needed a code change, reviewed and tested and shipped, to follow that amendment. A rule that holds the window as data, with its day count and its day basis as fields, needed a row update. The logic that says "a filing is due within the window from the crossing" did not move at all, because it was never about ten days or five. It was about a window.
Why a guess will not do
Beneficial ownership reporting is adversarial by nature. The whole reason the rule exists is that people who cross the line have an incentive not to announce it, or to announce it late, and the SEC pursues late and missing filings. So the question a compliance system has to answer is not soft. Did this holding cross five percent, and was the filing made inside the window that applied on the day it crossed? A probabilistic "likely compliant" is worthless against a regulator who can compute the exact answer from the transaction record. The answer has to be exact, repeatable, and traceable to the rule and the version of the window in force at the time.
There is also the distinction between an active stake, which draws a full Schedule 13D, and a passive or qualified holding, which can report on the lighter Schedule 13G under a different timeline. That branch is itself a rule, a condition on the filer's intent and status, and it too is data the logic reads rather than behavior baked into code.
The point
Schedule 13D is a clean illustration of the split that keeps a rule engine maintainable. The threshold is the stable, defining line. The window is the volatile, jurisdiction-set number. Encode the obligation once, as a threshold crossing followed by a window, and keep both values as data, and you get two things at once: a check exact enough to face the SEC, and a rule that absorbed a 2024 amendment without anyone touching its logic. The line held. The clock changed. The rule did neither, because it was built to read both from the table.