changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "did_you_mean": {
+ "description": "Suggested alternative interpretations",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "message": {
+ "description": "Error message if success is false",
+ "type": "string"
+ },
+ "pod_count": {
+ "description": "Number of result pods returned",
+ "type": "integer"
+ },
+ "pods": {
+ "description": "Array of result pods with structured data",
+ "items": {
+ "properties": {
+ "contents": {
+ "description": "Plain-text content from all subpods joined by newlines",
+ "type": "string"
+ },
+ "id": {
+ "description": "Pod identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "images": {
+ "description": "URLs of images in this pod",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "position": {
+ "description": "Display position of the pod",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "primary": {
+ "description": "Whether this is the primary result pod",
+ "type": "boolean"
+ },
+ "title": {
+ "description": "Pod title (e.g., 'Input', 'Result', 'Solution')",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "title",
+ "id",
+ "primary",
+ "position",
+ "contents",
+ "images"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "query": {
+ "description": "The query string that was sent to Wolfram Alpha",
+ "type": "string"
+ },
+ "success": {
+ "description": "Whether Wolfram Alpha found a valid interpretation",
+ "type": "boolean"
+ },
+ "tips": {
+ "description": "Usage tips from Wolfram Alpha",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "query",
+ "success"
+ ],
+ "type": "object"
+}