changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "audit_id": {
+ "format": "uuid",
+ "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
+ "type": "string"
+ },
+ "completed_at": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "findings": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "evidence": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "label": {
+ "type": "string"
+ },
+ "maxPoints": {
+ "type": "number"
+ },
+ "points": {
+ "type": "number"
+ },
+ "status": {
+ "enum": [
+ "pass",
+ "warn",
+ "fail",
+ "not-applicable"
+ ],
+ "type": "string"
+ },
+ "url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "label",
+ "status",
+ "points",
+ "maxPoints",
+ "evidence",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "hostname": {
+ "type": "string"
+ },
+ "receipt_url": {
+ "format": "uri",
+ "type": "string"
+ },
+ "requested_at": {
+ "type": "string"
+ },
+ "score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "status": {
+ "enum": [
+ "queued",
+ "running",
+ "completed",
+ "failed"
+ ],
+ "type": "string"
+ },
+ "visibility": {
+ "enum": [
+ "public",
+ "unlisted-noindex"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "audit_id",
+ "status",
+ "score",
+ "hostname",
+ "findings",
+ "receipt_url",
+ "visibility",
+ "requested_at",
+ "completed_at"
+ ],
+ "type": "object"
+}