{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InspectionProblems", "title": "InspectionProblems", "type": "object", "description": "Collection of errors and warnings identified during a package inspection.", "properties": { "totalErrors": { "type": "integer", "description": "Total number of errors found during inspection.", "minimum": 0 }, "totalWarnings": { "type": "integer", "description": "Total number of warnings found during inspection.", "minimum": 0 }, "errors": { "type": "array", "description": "Array of error details identified during inspection.", "items": { "$ref": "#/components/schemas/InspectionError" } }, "warnings": { "type": "array", "description": "Array of warning details identified during inspection.", "items": { "$ref": "#/components/schemas/InspectionWarning" } } } }