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"
+ },
+ "hostname": {
+ "type": "string"
+ },
+ "limitation": {
+ "type": "string"
+ },
+ "plan": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "type": "string"
+ },
+ "channel": {
+ "type": "string"
+ },
+ "priority": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "reason": {
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "required",
+ "recommended",
+ "verified",
+ "not-applicable"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "priority",
+ "status",
+ "channel",
+ "action",
+ "reason"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "audit_id",
+ "hostname",
+ "score",
+ "plan",
+ "limitation"
+ ],
+ "type": "object"
+}