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"
- },
- "BlobResourceContents": {
- "additionalProperties": true,
- "description": "Binary contents of a resource.",
- "properties": {
- "_meta": {
- "anyOf": [
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Meta"
- },
- "blob": {
- "title": "Blob",
- "type": "string"
- },
- "mimeType": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Mimetype"
- },
- "uri": {
- "format": "uri",
- "minLength": 1,
- "title": "Uri",
- "type": "string"
- }
- },
- "required": [
- "uri",
- "blob"
- ],
- "title": "BlobResourceContents",
- "type": "object"
- },
- "EmbeddedResource": {
- "additionalProperties": true,
- "description": "The contents of a resource, embedded into a prompt or tool call result.\n\nIt is up to the client how best to render embedded resources for the benefit\nof the LLM and/or the user.",
- "properties": {
- "_meta": {
- "anyOf": [
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Meta"
- },
- "annotations": {
- "anyOf": [
- {
- "$ref": "#/$defs/Annotations"
- },
- {
- "type": "null"
- }
- ],
- "default": null
- },
- "resource": {
- "anyOf": [
- {
- "$ref": "#/$defs/TextResourceContents"
- },
- {
- "$ref": "#/$defs/BlobResourceContents"
- }
- ],
- "title": "Resource"
- },
- "type": {
- "const": "resource",
- "title": "Type",
- "type": "string"
- }
- },
- "required": [
- "type",
- "resource"
- ],
- "title": "EmbeddedResource",
- "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"
- },
- "TextContent": {
- "additionalProperties": true,
- "description": "Text 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
- },
- "text": {
- "title": "Text",
- "type": "string"
- },
- "type": {
- "const": "text",
- "title": "Type",
- "type": "string"
- }
- },
- "required": [
- "type",
- "text"
- ],
- "title": "TextContent",
- "type": "object"
- },
- "TextResourceContents": {
- "additionalProperties": true,
- "description": "Text contents of a resource.",
- "properties": {
- "_meta": {
- "anyOf": [
- {
- "additionalProperties": true,
- "type": "object"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Meta"
- },
- "mimeType": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Mimetype"
- },
- "text": {
- "title": "Text",
- "type": "string"
- },
- "uri": {
- "format": "uri",
- "minLength": 1,
- "title": "Uri",
- "type": "string"
- }
- },
- "required": [
- "uri",
- "text"
- ],
- "title": "TextResourceContents",
- "type": "object"
- }
- },
- "properties": {
- "result": {
- "items": {
- "anyOf": [
- {
- "$ref": "#/$defs/TextContent"
- },
- {
- "$ref": "#/$defs/ImageContent"
- },
- {
- "$ref": "#/$defs/EmbeddedResource"
- }
- ]
- },
- "title": "Result",
- "type": "array"
- }
- },
- "required": [
- "result"
- ],
- "title": "get_event_logsOutput",
- "type": "object"
-}New value: +null