changedInput schema / properties / source / anyOf
Previous value: -[
- {
- "properties": {
- "path": {
- "description": "Filesystem path to the document to read. The document format is inferred from the file extension.",
- "type": "string"
- }
- },
- "required": [
- "path"
- ],
- "type": "object"
- },
- {
- "properties": {
- "bytesBase64": {
- "description": "Base64-encoded document bytes.",
- "type": "string"
- },
- "format": {
- "description": "The document format of bytesBase64 -- required, since inline bytes carry no filename to infer it from.",
- "enum": [
- "docx",
- "pptx",
- "xlsx",
- "odt",
- "odp",
- "ods",
- "odg",
- "odf",
- "markdown",
- "pdf"
- ],
- "type": "string"
- }
- },
- "required": [
- "bytesBase64",
- "format"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "properties": {
+ "path": {
+ "description": "Filesystem path to the document to read. The document format is inferred from the file extension.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "path"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "bytesBase64": {
+ "description": "Base64-encoded document bytes.",
+ "type": "string"
+ },
+ "format": {
+ "description": "The document format of bytesBase64 -- required, since inline bytes carry no filename to infer it from.",
+ "enum": [
+ "docx",
+ "pptx",
+ "xlsx",
+ "odt",
+ "odp",
+ "ods",
+ "odg",
+ "svg",
+ "odf",
+ "csv",
+ "markdown",
+ "pdf"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "bytesBase64",
+ "format"
+ ],
+ "type": "object"
+ }
+]