changedOutput schema / (root)
Previous value: -nullNew 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"
+ },
+ "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"
+ }
+ },
+ "properties": {
+ "result": {
+ "items": {
+ "$ref": "#/$defs/TextContent"
+ },
+ "title": "Result",
+ "type": "array"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "title": "ydb_explain_query_with_paramsOutput",
+ "type": "object"
+}