changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "detected_confidence": {
+ "description": "Confidence score for detected language or null",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "detected_source": {
+ "description": "Auto-detected source language code or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "format": {
+ "description": "Format type (text or html)",
+ "type": "string"
+ },
+ "source": {
+ "description": "Source language code or 'auto'",
+ "type": "string"
+ },
+ "target": {
+ "description": "Target language code",
+ "type": "string"
+ },
+ "text": {
+ "description": "Original text that was translated",
+ "type": "string"
+ },
+ "translated_text": {
+ "description": "Translated text or null if unavailable",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "text",
+ "source",
+ "target",
+ "format",
+ "translated_text",
+ "detected_source",
+ "detected_confidence"
+ ],
+ "type": "object"
+}