changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "context": {
+ "description": "The caller's original `context`, echoed verbatim (null if none was supplied)."
+ },
+ "decision": {
+ "description": "The reviewer's choice: submitted = approved/filled in, declined = explicit no.",
+ "enum": [
+ "submitted",
+ "declined"
+ ],
+ "type": "string"
+ },
+ "formSubmission": {
+ "description": "The reviewer-filled field values keyed by requestedSchema property name; null in json mode or on decline."
+ },
+ "selectedIds": {
+ "description": "elicit_selection only, on submit: the chosen option ids.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "status": {
+ "const": "consumed",
+ "description": "The outcome has been read at least once.",
+ "type": "string"
+ },
+ "values": {
+ "additionalProperties": {},
+ "description": "elicit_proposal only, on submit: the proposed values for just the fields the reviewer included.",
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "status",
+ "decision",
+ "context",
+ "formSubmission"
+ ],
+ "type": "object"
+}