changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "requests": {
+ "description": "Bounded unresolved request projections with no secret response topics.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "createdAt": {
+ "description": "ISO-8601 creation timestamp.",
+ "minLength": 1,
+ "type": "string"
+ },
+ "decision": {
+ "description": "Terminal human decision when resolved.",
+ "maxLength": 80,
+ "minLength": 1,
+ "type": "string"
+ },
+ "kind": {
+ "description": "Interaction mode that created the durable request.",
+ "enum": [
+ "approval",
+ "choice",
+ "refinement"
+ ],
+ "type": "string"
+ },
+ "requestId": {
+ "description": "Durable Nofax request handle.",
+ "maxLength": 84,
+ "minLength": 24,
+ "type": "string"
+ },
+ "resolvedAt": {
+ "description": "ISO-8601 terminal-response timestamp when resolved.",
+ "minLength": 1,
+ "type": "string"
+ },
+ "status": {
+ "description": "Current durable request state.",
+ "enum": [
+ "pending",
+ "resolved"
+ ],
+ "type": "string"
+ },
+ "text": {
+ "description": "Human refinement text when one was supplied.",
+ "maxLength": 2000,
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "required": [
+ "requestId",
+ "kind",
+ "status",
+ "createdAt"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "const": "ok",
+ "description": "The pending-request scan completed successfully.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "status",
+ "requests"
+ ],
+ "type": "object"
+}