changedInput schema / properties / group_by / description
Previous value: -"How to cluster errors: by exact message, by error type, or by parent container (to find a common upstream cause)."New value: +"How to cluster diagnostics: by exact message, by severity type (error/warning), or by parent container."
changedInput schema / properties / path / description
Previous value: -"Network root to collect errors under."New value: +"Network root to collect diagnostics under."
addedOutput schema / properties / error_count
Added value: +{
+ "description": "Number of error-severity diagnostics.",
+ "type": "number"
+}
changedOutput schema / properties / group_by / description
Previous value: -"How the errors were clustered, echoing the request."New value: +"How the diagnostics were clustered."
changedOutput schema / properties / groups / description
Previous value: -"Error clusters, largest first; fixing a big cluster's cause clears it at once."New value: +"Diagnostic clusters, largest first."
changedOutput schema / properties / groups / items / properties / count / description
Previous value: -"How many errors fall into this cluster."New value: +"How many diagnostics fall into this cluster."
changedOutput schema / properties / groups / items / properties / sample / description
Previous value: -"One representative error from the cluster."New value: +"One representative diagnostic from the cluster."
changedOutput schema / properties / groups / items / properties / sample / properties / message / description
Previous value: -"That node's error message, as a concrete example."New value: +"That node's diagnostic message, as a concrete example."
addedOutput schema / properties / groups / items / properties / sample / properties / type
Added value: +{
+ "description": "Severity of the representative diagnostic.",
+ "enum": [
+ "error",
+ "warning"
+ ],
+ "type": "string"
+}
changedOutput schema / properties / groups / items / properties / sample / required
Previous value: -[
- "path",
- "message"
-]New value: +[
+ "path",
+ "message",
+ "type"
+]
changedOutput schema / properties / path / description
Previous value: -"The network root errors were collected under, echoing the request."New value: +"The network root diagnostics were collected under."
changedOutput schema / properties / suggestions / description
Previous value: -"Plain-language next steps, e.g. the common cause and which nodes to check first."New value: +"Plain-language next steps, including which nodes to inspect first."
changedOutput schema / properties / total / description
Previous value: -"Total number of errors found across the network (0 means clean)."New value: +"Total number of diagnostics found across the network (errors + warnings)."
addedOutput schema / properties / warning_count
Added value: +{
+ "description": "Number of warning-severity diagnostics.",
+ "type": "number"
+}
changedOutput schema / required
Previous value: -[
- "path",
- "total",
- "group_by",
- "groups",
- "suggestions"
-]New value: +[
+ "path",
+ "total",
+ "error_count",
+ "warning_count",
+ "group_by",
+ "groups",
+ "suggestions"
+]