Edit

Community JSON Schema Validation Validation Rules

Validates JSON files against their corresponding schemas based on item type. 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
COMJSON1 JSON Parse Error (Community Schema) 🔴 Error

Rule Details

COMJSON1

🔴 JSON Parse Error (Community Schema)
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.