changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "Finding": {
+ "description": "A single redacted secret finding.",
+ "properties": {
+ "file": {
+ "title": "File",
+ "type": "string"
+ },
+ "line": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Line"
+ },
+ "redacted_match": {
+ "title": "Redacted Match",
+ "type": "string"
+ },
+ "severity": {
+ "$ref": "#/$defs/Severity"
+ },
+ "type": {
+ "title": "Type",
+ "type": "string"
+ }
+ },
+ "required": [
+ "file",
+ "type",
+ "severity",
+ "redacted_match"
+ ],
+ "title": "Finding",
+ "type": "object"
+ },
+ "Severity": {
+ "enum": [
+ "info",
+ "low",
+ "medium",
+ "high",
+ "critical"
+ ],
+ "title": "Severity",
+ "type": "string"
+ },
+ "Usage": {
+ "description": "Token-usage accounting block.",
+ "properties": {
+ "savings_pct": {
+ "title": "Savings Pct",
+ "type": "number"
+ },
+ "tokens_in_estimate": {
+ "title": "Tokens In Estimate",
+ "type": "integer"
+ },
+ "tokens_out_actual": {
+ "title": "Tokens Out Actual",
+ "type": "integer"
+ },
+ "tokens_saved_estimate": {
+ "title": "Tokens Saved Estimate",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "tokens_in_estimate",
+ "tokens_out_actual",
+ "tokens_saved_estimate",
+ "savings_pct"
+ ],
+ "title": "Usage",
+ "type": "object"
+ }
+ },
+ "description": "Paginated findings list for an existing scan.",
+ "properties": {
+ "findings": {
+ "items": {
+ "$ref": "#/$defs/Finding"
+ },
+ "title": "Findings",
+ "type": "array"
+ },
+ "next_cursor": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Next Cursor"
+ },
+ "report_uuid": {
+ "title": "Report Uuid",
+ "type": "string"
+ },
+ "total": {
+ "title": "Total",
+ "type": "integer"
+ },
+ "usage": {
+ "$ref": "#/$defs/Usage"
+ }
+ },
+ "required": [
+ "report_uuid",
+ "findings",
+ "total",
+ "usage"
+ ],
+ "title": "FindingsPage",
+ "type": "object"
+}