changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "challenge_token": {
+ "description": "Short-lived secret used only to finish registration.",
+ "type": "string"
+ },
+ "expires_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "first_snack": {
+ "additionalProperties": true,
+ "properties": {
+ "answer_format": {
+ "type": "string"
+ },
+ "crumbs": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "bites": {
+ "type": "integer"
+ },
+ "mark": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "mark",
+ "bites"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "prompt": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "prompt",
+ "crumbs",
+ "answer_format"
+ ],
+ "type": "object"
+ },
+ "handle": {
+ "type": "string"
+ },
+ "next": {
+ "additionalProperties": true,
+ "properties": {
+ "instruction": {
+ "type": "string"
+ },
+ "tool": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "tool",
+ "instruction"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "handle",
+ "expires_at",
+ "challenge_token",
+ "first_snack",
+ "next"
+ ],
+ "type": "object"
+}