changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of paragraphs requested",
+ "type": "number"
+ },
+ "html": {
+ "description": "Formatted HTML output",
+ "type": "string"
+ },
+ "length": {
+ "description": "Length of each paragraph",
+ "enum": [
+ "short",
+ "medium",
+ "long",
+ "verylong"
+ ],
+ "type": "string"
+ },
+ "options": {
+ "properties": {
+ "code": {
+ "description": "Include code blocks",
+ "type": "boolean"
+ },
+ "headers": {
+ "description": "Include random headers",
+ "type": "boolean"
+ },
+ "ordered_lists": {
+ "description": "Include ordered lists",
+ "type": "boolean"
+ },
+ "unordered_lists": {
+ "description": "Include unordered lists",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "headers",
+ "code",
+ "unordered_lists",
+ "ordered_lists"
+ ],
+ "type": "object"
+ },
+ "plain_text": {
+ "description": "Plain text version with HTML tags stripped",
+ "type": "string"
+ }
+ },
+ "required": [
+ "count",
+ "length",
+ "options",
+ "html",
+ "plain_text"
+ ],
+ "type": "object"
+}