changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "branch": {
+ "type": "string"
+ },
+ "disclaimer": {
+ "type": "string"
+ },
+ "filesScanned": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "findings": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "file": {
+ "type": "string"
+ },
+ "severity": {
+ "enum": [
+ "danger",
+ "warn"
+ ],
+ "type": "string"
+ },
+ "why": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "file",
+ "severity",
+ "why"
+ ],
+ "type": "object"
+ },
+ "maxItems": 50,
+ "type": "array"
+ },
+ "ok": {
+ "const": true,
+ "type": "boolean"
+ },
+ "repo": {
+ "type": "string"
+ },
+ "risk": {
+ "enum": [
+ "clean",
+ "suspicious",
+ "dangerous"
+ ],
+ "type": "string"
+ },
+ "scannedAt": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "ok",
+ "repo",
+ "branch",
+ "filesScanned",
+ "risk",
+ "summary",
+ "findings",
+ "disclaimer",
+ "scannedAt"
+ ],
+ "type": "object"
+}