diff --git a/json/resources/inspectionDescriptions/Json5StandardCompliance.html b/json/resources/inspectionDescriptions/Json5StandardCompliance.html index 4cf37d5b1cda..d3c0cc8aff75 100644 --- a/json/resources/inspectionDescriptions/Json5StandardCompliance.html +++ b/json/resources/inspectionDescriptions/Json5StandardCompliance.html @@ -1,5 +1,5 @@
-Checks a JSON5 file against the language specification. +Reports inconsistency with the language specification in a JSON5 file. \ No newline at end of file diff --git a/json/resources/inspectionDescriptions/JsonDuplicatePropertyKeys.html b/json/resources/inspectionDescriptions/JsonDuplicatePropertyKeys.html index f051b029ca8e..c28c16eb9235 100644 --- a/json/resources/inspectionDescriptions/JsonDuplicatePropertyKeys.html +++ b/json/resources/inspectionDescriptions/JsonDuplicatePropertyKeys.html @@ -1,5 +1,5 @@ -Reports duplicate keys in object literals. +Reports a duplicate key in an object literal. \ No newline at end of file diff --git a/json/resources/inspectionDescriptions/JsonPathEvaluateUnknownKey.html b/json/resources/inspectionDescriptions/JsonPathEvaluateUnknownKey.html index 6705ae0ffd7e..a7528b278c23 100644 --- a/json/resources/inspectionDescriptions/JsonPathEvaluateUnknownKey.html +++ b/json/resources/inspectionDescriptions/JsonPathEvaluateUnknownKey.html @@ -1,5 +1,5 @@ -Highlights keys used in JSONPath expression that are not present in source JSON document for evaluate.
+Reports a key in a JSONPath expression that is missing in the source JSON document to evaluate. \ No newline at end of file diff --git a/json/resources/inspectionDescriptions/JsonPathUnknownFunction.html b/json/resources/inspectionDescriptions/JsonPathUnknownFunction.html index 695e640df779..0a2130572703 100644 --- a/json/resources/inspectionDescriptions/JsonPathUnknownFunction.html +++ b/json/resources/inspectionDescriptions/JsonPathUnknownFunction.html @@ -1,6 +1,6 @@ -Checks that JSONPath function call uses one of known standard function names: - concat, keys, length, min, max, avg, stddev, sum. +Reports an unknown name in a JSONPath function call instead of known standard function names: +concat, keys, length, min, max, avg, stddev, sum.
\ No newline at end of file
diff --git a/json/resources/inspectionDescriptions/JsonPathUnknownOperator.html b/json/resources/inspectionDescriptions/JsonPathUnknownOperator.html
index 1e2d5e517ec6..85d8a578eb7b 100644
--- a/json/resources/inspectionDescriptions/JsonPathUnknownOperator.html
+++ b/json/resources/inspectionDescriptions/JsonPathUnknownOperator.html
@@ -1,6 +1,6 @@
-Checks that JSONPath expression uses one of known standard operators:
- in, nin, subsetof, anyof, noneof, size, empty, contains.
+Reports an unknown operator on a JSONPath expression instead of one of the standard ones:
+in, nin, subsetof, anyof, noneof, size, empty, contains.
\ No newline at end of file
diff --git a/json/resources/inspectionDescriptions/JsonSchemaCompliance.html b/json/resources/inspectionDescriptions/JsonSchemaCompliance.html
index 5b1c53a1b324..f063cf4e957f 100644
--- a/json/resources/inspectionDescriptions/JsonSchemaCompliance.html
+++ b/json/resources/inspectionDescriptions/JsonSchemaCompliance.html
@@ -1,5 +1,5 @@
-Validates a JSON file against a JSON schema assigned to it.$ref or $schema path in a JSON schema.