Structure JSONB Make.com
Hi, i have a program, supabase + bolt.new + make.com, now i have a upsert a row in make.com, and the collum in supabase is JSON B
The structure i want is like this:
{
"text": "text ...",
"sources": [
{
"pages": "4, 7-11",
"document_name": "name1.pdf",
"document_link": "https://..."
},
{
"pages": "1",
"document_name": "Name2.pdf",
"document_link": "https://..."
}
]
}
but i recive the code like this in the collum:
"{\r\n "text": "Text ...",\r\n "sources": [\r\n {\r\n "pages": "4, 7-11",\r\n "document_name": "Name.pdf",\r\n "document_link": "https://...\"\r\n },\r\n {\r\n "pages": "1",\r\n "document_name": "Name2.pdf",\r\n "document_link": "https://...\"\r\n }\r\n ]\r\n}\r\n"
I get it with "
The structure i want is like this:
{
"text": "text ...",
"sources": [
{
"pages": "4, 7-11",
"document_name": "name1.pdf",
"document_link": "https://..."
},
{
"pages": "1",
"document_name": "Name2.pdf",
"document_link": "https://..."
}
]
}
but i recive the code like this in the collum:
"{\r\n "text": "Text ...",\r\n "sources": [\r\n {\r\n "pages": "4, 7-11",\r\n "document_name": "Name.pdf",\r\n "document_link": "https://...\"\r\n },\r\n {\r\n "pages": "1",\r\n "document_name": "Name2.pdf",\r\n "document_link": "https://...\"\r\n }\r\n ]\r\n}\r\n"
I get it with "
