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"
+ },
+ "privacy": {
+ "const": "unlisted-noindex-unless-explicitly-published",
+ "type": "string"
+ },
+ "receipt_url": {
+ "format": "uri",
+ "type": "string"
+ },
+ "status": {
+ "const": "queued",
+ "type": "string"
+ }
+ },
+ "required": [
+ "audit_id",
+ "status",
+ "hostname",
+ "receipt_url",
+ "privacy"
+ ],
+ "type": "object"
+}