sr22
The sr22 noun — identity, lifecycle, events, and every capability as an anchored section: 6 capabilities, 0 live, 6 sandbox, 0 declared.
sr22 is one of the estate's 317 automotive nouns — a job a car needs done. It carries 6 capabilities: 0 live, 6 sandbox, 0 declared · doors aggregator.vin.
Identity
| Noun | sr22 |
| Pillar | Data (facets: 2 data · 2 services · 2 commerce) |
| Capabilities | 6 — 0 live · 6 sandbox · 0 declared |
| Entities | Policy |
| Doors | aggregator.vin |
| SDK | Vin.sr22.* from apis.vin |
| Address | /catalog/sr22#{action} — the anchor IS the wire name minus sr22. |
Events
The vocabulary this noun can append to the record — 11 past-tense, versioned event types, each linked to the capability that emits it:
Sr22.feeCharged@1— emitted byfeeSr22.feeRequested@1— emitted byfeeSr22.fileFailed@1— emitted byfileSr22.fileRequested@1— emitted byfileSr22.filed@1— emitted byfileSr22.paid@1— emitted bypaySr22.payFailed@1— emitted bypaySr22.payRequested@1— emitted bypaySr22.requested@1— emitted byfileSr22.terminateRequested@1— emitted byterminateSr22.terminated@1— emitted byterminate
Discover & read
status
sr22.status · GET /sr22s/status · gate none · sandbox · answers Sr22Status@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /5XYP5DGC8PG348852 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
import { sr22 } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await sr22.status({"vin":"5XYP5DGC8PG348852"})curl 'https://apis.vin/sr22s/status?vin=5XYP5DGC8PG348852'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "Sr22Status@1",
"value": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"filing": {
"id": "SR22-af00a46b",
"holderId": "ID-11f17424",
"status": "filing-received",
"requirement": {
"status": "not-on-record",
"basis": "no-world-sr22-requirement-axis"
}
}
},
"evidence": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"filing": {
"id": "SR22-af00a46b",
"holderId": "ID-11f17424",
"status": "filing-received",
"requirement": {
"status": "not-on-record",
"basis": "no-world-sr22-requirement-axis"
}
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "policy-annex-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}eligibility
sr22.eligibility · GET /sr22s/eligibility · gate none · sandbox · answers Sr22Eligibility@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /5XYP5DGC8PG348852 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
import { sr22 } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await sr22.eligibility({"vin":"5XYP5DGC8PG348852"})curl 'https://apis.vin/sr22s/eligibility?vin=5XYP5DGC8PG348852'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "Sr22Eligibility@1",
"value": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"sr22": {
"status": "eligible-to-file",
"holderId": "ID-11f17424",
"holder": "Ava Good",
"requirement": {
"status": "not-on-record",
"basis": "no-world-sr22-requirement-axis"
}
}
},
"evidence": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"sr22": {
"status": "eligible-to-file",
"holderId": "ID-11f17424",
"holder": "Ava Good",
"requirement": {
"status": "not-on-record",
"basis": "no-world-sr22-requirement-axis"
}
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "policy-annex-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Quote & price
fee
sr22.fee · POST /sr22s/fee · gate offer · sandbox · answers Sr22Fee@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /5XYP5DGC8PG348852 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — Sr22.feeCharged@1 · Sr22.feeRequested@1.
import { sr22 } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await sr22.fee({"vin":"5XYP5DGC8PG348852"})curl -X POST https://apis.vin/sr22s/fee \
-H 'content-type: application/json' \
-d '{"vin":"5XYP5DGC8PG348852"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "Sr22Fee@1",
"value": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"fee": {
"filingId": "SR22-af00a46b",
"amount": {
"status": "not-posted",
"basis": "no-world-money-law"
}
},
"payer": {
"name": "Ava Good",
"castRow": "super-prime",
"creditTier": "super-prime"
}
},
"evidence": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"fee": {
"filingId": "SR22-af00a46b",
"amount": {
"status": "not-posted",
"basis": "no-world-money-law"
}
},
"payer": {
"name": "Ava Good",
"castRow": "super-prime",
"creditTier": "super-prime"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "policy-annex-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Apply & book
file
sr22.file · POST /sr22s/file · gate offer · sandbox · answers Sr22File@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /5XYP5DGC8PG348852 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — Sr22.fileFailed@1 · Sr22.fileRequested@1 · Sr22.filed@1 · Sr22.requested@1.
import { sr22 } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await sr22.file({"vin":"5XYP5DGC8PG348852"})curl -X POST https://apis.vin/sr22s/file \
-H 'content-type: application/json' \
-d '{"vin":"5XYP5DGC8PG348852"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "Sr22File@1",
"value": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"filing": {
"id": "SR22-af00a46b",
"holderId": "ID-11f17424",
"status": "filing-received",
"requirement": {
"status": "not-on-record",
"basis": "no-world-sr22-requirement-axis"
}
}
},
"evidence": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"filing": {
"id": "SR22-af00a46b",
"holderId": "ID-11f17424",
"status": "filing-received",
"requirement": {
"status": "not-on-record",
"basis": "no-world-sr22-requirement-axis"
}
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "policy-annex-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Pay & settle
pay
sr22.pay · POST /sr22s/pay · gate offer · sandbox · answers Sr22Pay@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /5XYP5DGC8PG348852 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — Sr22.paid@1 · Sr22.payFailed@1 · Sr22.payRequested@1.
import { sr22 } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await sr22.pay({"vin":"5XYP5DGC8PG348852"})curl -X POST https://apis.vin/sr22s/pay \
-H 'content-type: application/json' \
-d '{"vin":"5XYP5DGC8PG348852"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "Sr22Pay@1",
"value": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"payment": {
"filingId": "SR22-af00a46b",
"status": "not-payable-fee-not-posted",
"amount": {
"status": "not-posted",
"basis": "no-world-money-law"
}
},
"payer": {
"name": "Ava Good",
"castRow": "super-prime",
"creditTier": "super-prime"
}
},
"evidence": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"payment": {
"filingId": "SR22-af00a46b",
"status": "not-payable-fee-not-posted",
"amount": {
"status": "not-posted",
"basis": "no-world-money-law"
}
},
"payer": {
"name": "Ava Good",
"castRow": "super-prime",
"creditTier": "super-prime"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "policy-annex-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Lifecycle & state
terminate
sr22.terminate · POST /sr22s/terminate · gate offer · sandbox · answers Sr22Terminate@1
| Field | Type | Required | Notes |
|---|---|---|---|
vin | string | no | — |
The gate is a 402 OFFER — the price and a hard ceiling on the wire, with a durable intent that executes on settlement. Never a wall, never "contact sales". Price: not posted — see /pricing.
Door — aggregator.vin serves this noun on its two routes: / (the landing) · /5XYP5DGC8PG348852 (the VIN lens).
Try it — sandbox: every call answers a deterministic, provenance-labeled simulated payload ({ environment, simulated } in the body). Force any documented outcome with the magic triggers. Going live is a connect, never a ballot: submit the credential at integrates.vin (dealer systems) or connects.vin (consumer accounts) — submissions enter the activation queue and rank live rollout.
Emits — Sr22.terminateRequested@1 · Sr22.terminated@1.
import { sr22 } from 'apis.vin'
// the gate law is in the type system: Answer<T> = Ok | Empty | Blocked | Offer
const answer = await sr22.terminate({"vin":"5XYP5DGC8PG348852"})curl -X POST https://apis.vin/sr22s/terminate \
-H 'content-type: application/json' \
-d '{"vin":"5XYP5DGC8PG348852"}'Receipt — the sandbox wire answered the request above with this exact body at build time. Captured by the receipts runner (timestamped, provenance in the payload), never authored; it re-executes only when this descriptor changes.
{
"type": "OK",
"answers": "Sr22Terminate@1",
"value": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"termination": {
"filingId": "SR22-af00a46b",
"holderId": "ID-11f17424",
"status": "termination-received"
}
},
"evidence": {
"vin": "5XYP5DGC8PG348852",
"noun": "sr22",
"asOf": "2026-08-10",
"termination": {
"filingId": "SR22-af00a46b",
"holderId": "ID-11f17424",
"status": "termination-received"
}
},
"provenance": {
"simulated": true,
"environment": "sandbox",
"source": "policy-annex-sandbox"
},
"events": [],
"meter": {
"charged": "0.00",
"posted": false
}
}Data model
The record shape behind this noun — one entity, each property an evidence field. See the whole estate model on the data model page.
Policy
Generated from the catalog. Every capability, answer, gate, and entity on this page is a rendered descriptor — it cannot drift from the wire.