require-vercel-schema-url
Require Vercel $schema metadata to reference a vercel.json schema URL.
Targeted pattern scopeâ
- Top-level
$schemainvercel.json.
What this rule reportsâ
This rule reports missing or non-Vercel schema URL values.
Why this rule existsâ
Using a vercel.json-aware schema URL improves editor validation quality and reduces config drift.
â Incorrectâ
{
"$schema": "https://example.com/schema.json"
}
â Correctâ
{
"$schema": "https://openapi.vercel.sh/vercel.json"
}
When not to use itâ
Disable this rule if schema URL conventions are intentionally customized by project tooling.
Rule catalog ID: R106