{"version": "2.1.0", "$schema": "https://json.schemastore.org/sarif-2.1.0.json", "runs": [{"tool": {"driver": {"name": "Repobility", "informationUri": "https://repobility.com", "rules": [{"id": "scanner-c2697bf7c0b531d4", "name": "Icon-only button without accessible name \u2014 frontend/src/components/BatchTable.vue:110", "shortDescription": {"text": "Icon-only button without accessible name \u2014 frontend/src/components/BatchTable.vue:110"}, "fullDescription": {"text": "A `<button>` whose only child is a single glyph or symbol needs `title=` or `aria-label=` so screen readers (and tooltips on hover) work.\n\nWhy: P3 in CHECKLIST.md \u2014 icon-only buttons skipped a title.\nRule id: fq.button.no-label"}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "low", "confidence": 1.0}}, {"id": "scanner-9710c8d059e53154", "name": "No frontend routes/components detected", "shortDescription": {"text": "No frontend routes/components detected"}, "fullDescription": {"text": "No React/Vue/Next routes were found. This is fine for backend-only repos."}, "properties": {"scanner": "scanner-primary", "layer": "frontend", "severity": "info", "confidence": 1.0}}, {"id": "scanner-6372cebde0220094", "name": "No auth library detected", "shortDescription": {"text": "No auth library detected"}, "fullDescription": {"text": "The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). The repo has auth/admin/session surface indicators, so auth may live in custom code, in a separate service, or be missing."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-4601e3ad3bb28677", "name": "No CI/CD pipelines detected", "shortDescription": {"text": "No CI/CD pipelines detected"}, "fullDescription": {"text": "No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints."}, "properties": {"scanner": "scanner-primary", "layer": "cicd", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-6893a6c8b0861585", "name": "Very low test-to-source ratio", "shortDescription": {"text": "Very low test-to-source ratio"}, "fullDescription": {"text": "0 test file(s) for 16 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-141b30a41e03817b", "name": "No license file detected", "shortDescription": {"text": "No license file detected"}, "fullDescription": {"text": "No LICENSE/COPYING/NOTICE file was found. Generated repositories often omit licensing, which blocks reuse and automated intake."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-3ab5d313dda8e5f9", "name": "Debug logging residue appears in source files", "shortDescription": {"text": "Debug logging residue appears in source files"}, "fullDescription": {"text": "Found 14 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-b9088664ace7f748", "name": "Composite production-readiness gap", "shortDescription": {"text": "Composite production-readiness gap"}, "fullDescription": {"text": "Multiple low-cost hardening controls are missing together: license, ci, tests. Opus verification showed these co-occurring gaps are a better readiness signal than reading each flag in isolation."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "medium", "confidence": 1.0}}, {"id": "scanner-ea8f3013f588db25", "name": "Shallow git history limits provenance confidence", "shortDescription": {"text": "Shallow git history limits provenance confidence"}, "fullDescription": {"text": "The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-8424db9c75e04ba4", "name": "Very short observed git history", "shortDescription": {"text": "Very short observed git history"}, "fullDescription": {"text": "The repo has multiple source files but two or fewer visible commits. This is not a failure by itself, but it lowers confidence in evolution-based diagnosis."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "info", "confidence": 1.0}}, {"id": "scanner-e820ef802d2c7bc8", "name": "Legacy-named symbol `bl_old` in backend/app/seed.py:75", "shortDescription": {"text": "Legacy-named symbol `bl_old` in backend/app/seed.py:75"}, "fullDescription": {"text": "Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version."}, "properties": {"scanner": "scanner-primary", "layer": "quality", "severity": "low", "confidence": 1.0}}, {"id": "scanner-91b6a4b64fcac3b5", "name": "FastAPI POST `create_batch` without auth dependency \u2014 backend/app/main.py:126", "shortDescription": {"text": "FastAPI POST `create_batch` without auth dependency \u2014 backend/app/main.py:126"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-7213ce04c4064aae", "name": "FastAPI POST `upload_screenshot` without auth dependency \u2014 backend/app/main.py:141", "shortDescription": {"text": "FastAPI POST `upload_screenshot` without auth dependency \u2014 backend/app/main.py:141"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-2d0ce0fe0079d6e0", "name": "FastAPI POST `create_comparison` without auth dependency \u2014 backend/app/main.py:175", "shortDescription": {"text": "FastAPI POST `create_comparison` without auth dependency \u2014 backend/app/main.py:175"}, "fullDescription": {"text": "`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-1990d1cf47ecca6b", "name": "FastAPI PUT `update_settings` without auth dependency \u2014 backend/app/main.py:354", "shortDescription": {"text": "FastAPI PUT `update_settings` without auth dependency \u2014 backend/app/main.py:354"}, "fullDescription": {"text": "`@router.put` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public."}, "properties": {"scanner": "scanner-primary", "layer": "security", "severity": "high", "confidence": 1.0}}, {"id": "scanner-85f75c622b5b3e0c", "name": "Unused endpoint: GET /api/batches", "shortDescription": {"text": "Unused endpoint: GET /api/batches"}, "fullDescription": {"text": "`backend/app/main.py` declares `GET /api/batches` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-a9ce81264adc4d24", "name": "Unused endpoint: POST /api/batches", "shortDescription": {"text": "Unused endpoint: POST /api/batches"}, "fullDescription": {"text": "`backend/app/main.py` declares `POST /api/batches` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-4e67e216c50f5ee6", "name": "Unused endpoint: POST /api/batches/{batch_id}/screenshots", "shortDescription": {"text": "Unused endpoint: POST /api/batches/{batch_id}/screenshots"}, "fullDescription": {"text": "`backend/app/main.py` declares `POST /api/batches/{batch_id}/screenshots` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-61fb6d57ccc2fc1d", "name": "Unused endpoint: POST /api/comparisons", "shortDescription": {"text": "Unused endpoint: POST /api/comparisons"}, "fullDescription": {"text": "`backend/app/main.py` declares `POST /api/comparisons` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-243be0ef7afceb97", "name": "Unused endpoint: GET /api/comparisons", "shortDescription": {"text": "Unused endpoint: GET /api/comparisons"}, "fullDescription": {"text": "`backend/app/main.py` declares `GET /api/comparisons` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-bba0055b19cae860", "name": "Unused endpoint: GET /api/comparisons/{comparison_id}/scenes", "shortDescription": {"text": "Unused endpoint: GET /api/comparisons/{comparison_id}/scenes"}, "fullDescription": {"text": "`backend/app/main.py` declares `GET /api/comparisons/{comparison_id}/scenes` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-b7c6e2f07a224fa2", "name": "Unused endpoint: GET /api/items/{item_id}", "shortDescription": {"text": "Unused endpoint: GET /api/items/{item_id}"}, "fullDescription": {"text": "`backend/app/main.py` declares `GET /api/items/{item_id}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-3912de899fb62908", "name": "Unused endpoint: GET /api/baselines", "shortDescription": {"text": "Unused endpoint: GET /api/baselines"}, "fullDescription": {"text": "`backend/app/main.py` declares `GET /api/baselines` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-379b09f9de636500", "name": "Unused endpoint: GET /api/settings", "shortDescription": {"text": "Unused endpoint: GET /api/settings"}, "fullDescription": {"text": "`backend/app/main.py` declares `GET /api/settings` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-2bffc2596a61e55e", "name": "Unused endpoint: PUT /api/settings", "shortDescription": {"text": "Unused endpoint: PUT /api/settings"}, "fullDescription": {"text": "`backend/app/main.py` declares `PUT /api/settings` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}, {"id": "scanner-a1ffa0305215b513", "name": "Unused endpoint: GET /api/meta", "shortDescription": {"text": "Unused endpoint: GET /api/meta"}, "fullDescription": {"text": "`backend/app/main.py` declares `GET /api/meta` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code \u2014 consider removing or documenting who consumes it."}, "properties": {"scanner": "scanner-primary", "layer": "api", "severity": "low", "confidence": 1.0}}]}}, "automationDetails": {"id": "repobility/19761"}, "properties": {"repository": "sjoijooegoo/PixelComparison", "repoUrl": "https://github.com/sjoijooegoo/PixelComparison", "branch": "main"}, "results": [{"ruleId": "scanner-c2697bf7c0b531d4", "level": "note", "message": {"text": "Icon-only button without accessible name \u2014 frontend/src/components/BatchTable.vue:110"}, "properties": {"repobilityId": "7a913d5783a2e28c", "scanner": "scanner-primary", "fingerprint": "c2697bf7c0b531d4", "layer": "frontend", "severity": "low", "confidence": 1.0, "tags": ["frontend-quality", "fq.button.no-label"]}}, {"ruleId": "scanner-9710c8d059e53154", "level": "none", "message": {"text": "No frontend routes/components detected"}, "properties": {"repobilityId": "44ca61485762e494", "scanner": "scanner-primary", "fingerprint": "9710c8d059e53154", "layer": "frontend", "severity": "info", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-6372cebde0220094", "level": "warning", "message": {"text": "No auth library detected"}, "properties": {"repobilityId": "a5b6035a5bbf8054", "scanner": "scanner-primary", "fingerprint": "6372cebde0220094", "layer": "security", "severity": "medium", "confidence": 1.0, "tags": ["coverage", "auth"]}}, {"ruleId": "scanner-4601e3ad3bb28677", "level": "warning", "message": {"text": "No CI/CD pipelines detected"}, "properties": {"repobilityId": "c3ee439bce2bc51e", "scanner": "scanner-primary", "fingerprint": "4601e3ad3bb28677", "layer": "cicd", "severity": "medium", "confidence": 1.0, "tags": ["coverage"]}}, {"ruleId": "scanner-6893a6c8b0861585", "level": "warning", "message": {"text": "Very low test-to-source ratio"}, "properties": {"repobilityId": "54a7de3f06314bf0", "scanner": "scanner-primary", "fingerprint": "6893a6c8b0861585", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["tests", "coverage"]}}, {"ruleId": "scanner-141b30a41e03817b", "level": "note", "message": {"text": "No license file detected"}, "properties": {"repobilityId": "22c0f681786a08e8", "scanner": "scanner-primary", "fingerprint": "141b30a41e03817b", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["license", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-3ab5d313dda8e5f9", "level": "note", "message": {"text": "Debug logging residue appears in source files"}, "properties": {"repobilityId": "f84fbd61edbf79d6", "scanner": "scanner-primary", "fingerprint": "3ab5d313dda8e5f9", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["debug", "cleanup", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-b9088664ace7f748", "level": "warning", "message": {"text": "Composite production-readiness gap"}, "properties": {"repobilityId": "57d53103dd5edfac", "scanner": "scanner-primary", "fingerprint": "b9088664ace7f748", "layer": "quality", "severity": "medium", "confidence": 1.0, "tags": ["production-readiness", "repo-hardening", "generated-repo-pattern"]}}, {"ruleId": "scanner-ea8f3013f588db25", "level": "note", "message": {"text": "Shallow git history limits provenance confidence"}, "properties": {"repobilityId": "08af08cf23daa0d0", "scanner": "scanner-primary", "fingerprint": "ea8f3013f588db25", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-8424db9c75e04ba4", "level": "none", "message": {"text": "Very short observed git history"}, "properties": {"repobilityId": "19264e6f2c827eeb", "scanner": "scanner-primary", "fingerprint": "8424db9c75e04ba4", "layer": "quality", "severity": "info", "confidence": 1.0, "tags": ["provenance", "git-history", "generated-repo-pattern"]}}, {"ruleId": "scanner-e820ef802d2c7bc8", "level": "note", "message": {"text": "Legacy-named symbol `bl_old` in backend/app/seed.py:75"}, "properties": {"repobilityId": "2db8173c8502bcea", "scanner": "scanner-primary", "fingerprint": "e820ef802d2c7bc8", "layer": "quality", "severity": "low", "confidence": 1.0, "tags": ["integrity", "legacy-marker", "dead-code"]}}, {"ruleId": "scanner-91b6a4b64fcac3b5", "level": "error", "message": {"text": "FastAPI POST `create_batch` without auth dependency \u2014 backend/app/main.py:126"}, "properties": {"repobilityId": "736df641ec7ee296", "scanner": "scanner-primary", "fingerprint": "91b6a4b64fcac3b5", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/app/main.py"}, "region": {"startLine": 126}}}]}, {"ruleId": "scanner-7213ce04c4064aae", "level": "error", "message": {"text": "FastAPI POST `upload_screenshot` without auth dependency \u2014 backend/app/main.py:141"}, "properties": {"repobilityId": "d74913657654e3b8", "scanner": "scanner-primary", "fingerprint": "7213ce04c4064aae", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/app/main.py"}, "region": {"startLine": 141}}}]}, {"ruleId": "scanner-2d0ce0fe0079d6e0", "level": "error", "message": {"text": "FastAPI POST `create_comparison` without auth dependency \u2014 backend/app/main.py:175"}, "properties": {"repobilityId": "9b6e783b1526f664", "scanner": "scanner-primary", "fingerprint": "2d0ce0fe0079d6e0", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/app/main.py"}, "region": {"startLine": 175}}}]}, {"ruleId": "scanner-1990d1cf47ecca6b", "level": "error", "message": {"text": "FastAPI PUT `update_settings` without auth dependency \u2014 backend/app/main.py:354"}, "properties": {"repobilityId": "9ac255e1189a4bf4", "scanner": "scanner-primary", "fingerprint": "1990d1cf47ecca6b", "layer": "security", "severity": "high", "confidence": 1.0, "tags": ["auth", "owasp", "auth.fastapi.unauth_mutation"]}, "locations": [{"physicalLocation": {"artifactLocation": {"uri": "backend/app/main.py"}, "region": {"startLine": 354}}}]}, {"ruleId": "scanner-85f75c622b5b3e0c", "level": "note", "message": {"text": "Unused endpoint: GET /api/batches"}, "properties": {"repobilityId": "dfe3dc33ed16614d", "scanner": "scanner-primary", "fingerprint": "85f75c622b5b3e0c", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-a9ce81264adc4d24", "level": "note", "message": {"text": "Unused endpoint: POST /api/batches"}, "properties": {"repobilityId": "402de96bf23926ea", "scanner": "scanner-primary", "fingerprint": "a9ce81264adc4d24", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-4e67e216c50f5ee6", "level": "note", "message": {"text": "Unused endpoint: POST /api/batches/{batch_id}/screenshots"}, "properties": {"repobilityId": "b0887a3a0385f843", "scanner": "scanner-primary", "fingerprint": "4e67e216c50f5ee6", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-61fb6d57ccc2fc1d", "level": "note", "message": {"text": "Unused endpoint: POST /api/comparisons"}, "properties": {"repobilityId": "54b1b70d0d8740fd", "scanner": "scanner-primary", "fingerprint": "61fb6d57ccc2fc1d", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-243be0ef7afceb97", "level": "note", "message": {"text": "Unused endpoint: GET /api/comparisons"}, "properties": {"repobilityId": "5fc8f74549df2b16", "scanner": "scanner-primary", "fingerprint": "243be0ef7afceb97", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-bba0055b19cae860", "level": "note", "message": {"text": "Unused endpoint: GET /api/comparisons/{comparison_id}/scenes"}, "properties": {"repobilityId": "a18162ead8ac9699", "scanner": "scanner-primary", "fingerprint": "bba0055b19cae860", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-b7c6e2f07a224fa2", "level": "note", "message": {"text": "Unused endpoint: GET /api/items/{item_id}"}, "properties": {"repobilityId": "73b206c9e684007b", "scanner": "scanner-primary", "fingerprint": "b7c6e2f07a224fa2", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-3912de899fb62908", "level": "note", "message": {"text": "Unused endpoint: GET /api/baselines"}, "properties": {"repobilityId": "ff11b7138fef2a5f", "scanner": "scanner-primary", "fingerprint": "3912de899fb62908", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-379b09f9de636500", "level": "note", "message": {"text": "Unused endpoint: GET /api/settings"}, "properties": {"repobilityId": "f8ee5dfe350b4aff", "scanner": "scanner-primary", "fingerprint": "379b09f9de636500", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-2bffc2596a61e55e", "level": "note", "message": {"text": "Unused endpoint: PUT /api/settings"}, "properties": {"repobilityId": "61c10ea8d270c570", "scanner": "scanner-primary", "fingerprint": "2bffc2596a61e55e", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}, {"ruleId": "scanner-a1ffa0305215b513", "level": "note", "message": {"text": "Unused endpoint: GET /api/meta"}, "properties": {"repobilityId": "c4da33fb1b203a0b", "scanner": "scanner-primary", "fingerprint": "a1ffa0305215b513", "layer": "api", "severity": "low", "confidence": 1.0, "tags": ["wiring", "unused-endpoint"]}}]}]}