Describe the problem/error/question
I need to export data to Google Merchant Center. For that, I use XML to JSON, and it works pretty well, except for one thing: parameters are needed for root
Currently, the export gives that:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss>
<channel>
<item>
...
and I need that, otherwise, Google throw an error
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0">
<channel>
<item>
...
To make it work, the worauround is to replace the text ‘’ by what is needed. But it is not clean
Is there a way to set correctly?
Please share your workflow
Information on your n8n setup
- n8n version: 1.29.1
- Database (default: SQLite): PostgreSQL
- n8n EXECUTIONS_PROCESS setting (default: own, main): own
- Running n8n via (Docker, npm, n8n cloud, desktop app): Docker
- Operating system: Debian