changedOutput schema / (root)
Previous value: -{
- "$defs": {
- "Annotations": {
- "additionalProperties": true,
- "properties": {
- "audience": {
- "anyOf": [
- {
- "items": {
- "enum": [
- "user",
- "assistant"
- ],
- "type": "string"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Audience"
- },
- "priority": {
- "anyOf": [
- {
- "maximum": 1,
- "minimum": 0,
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Priority"
- }
- },
- "title": "Annotations",
- "type": "object"
- },
- "ImageContent": {
- "additionalProperties": true,
- "description": "Image content for a message.",
- "properties": {
- "_meta": {
- "anyOf": [
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Meta"
- },
- "annotations": {
- "anyOf": [
- {
- "$ref": "#/$defs/Annotations"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "data": {
- "title": "Data",
- "type": "string"
- },
- "mimeType": {
- "title": "Mimetype",
- "type": "string"
- },
- "type": {
- "const": "image",
- "title": "Type",
- "type": "string"
- }
- },
- "required": [
- "type",
- "data",
- "mimeType"
- ],
- "title": "ImageContent",
- "type": "object"
- }
- },
- "properties": {
- "result": {
- "description": "List of outputs from the executed cell",
- "items": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "$ref": "#/$defs/ImageContent"
- }
- ]
- },
- "title": "Result",
- "type": "array"
- }
- },
- "required": [
- "result"
- ],
- "title": "insert_execute_code_cellOutput",
- "type": "object"
-}New value: +null