changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "form_id": {
+ "description": "Form UUID",
+ "type": "string"
+ },
+ "has_unpublished_changes": {
+ "description": "Live form has edits not yet republished",
+ "type": "boolean"
+ },
+ "is_live": {
+ "description": "Whether the form is published",
+ "type": "boolean"
+ },
+ "nodes": {
+ "description": "Nodes in sequential order - IDs for update_node / upload_node_media",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "config": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "id": {
+ "type": "string"
+ },
+ "options": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "content": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "content"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "prompt": {
+ "type": "string"
+ },
+ "required": {
+ "type": "boolean"
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "type",
+ "prompt",
+ "required"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Form title",
+ "type": "string"
+ }
+ },
+ "required": [
+ "form_id",
+ "title",
+ "is_live",
+ "has_unpublished_changes",
+ "nodes"
+ ],
+ "type": "object"
+}