Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Validates JSON files against official JSON schemas located at public/schemas. Reports schema validation errors and warns when files are not at a current format version. Topic IDs 100+ are computed as JsonSchemaErrorBase (100) + ProjectItemType. Topic IDs 1100+ are computed as NotCurrentFormatVersionBase (1100) + ProjectItemType.
Rules Summary
| Rule ID | Rule | Severity | Auto-Fix |
|---|---|---|---|
| JSON1 | JSON Parse Error (Schema Validation) | 🔴 Error |
Rule Details
JSON1
🔴 JSON Parse Error (Schema Validation)
Severity: Error
What This Checks
The file could not be parsed as valid JSON. Check for syntax errors like missing commas, brackets, or quotes.
How to Fix
Use a JSON validator or your editor's JSON mode to find syntax errors. Common issues include: missing or extra commas, unclosed brackets or braces, unquoted property names, and trailing commas before closing brackets.