I created a table that has id(bigserial), cognitoId(varchar), subaccountInfo(json), I'm trying like this: ``` const obj = [{ nome: "nil", sobrenome: "kuro" }] const json = JSON.stringify(obj) console.log(json) const responseDb = await db .withSchema("schemaName") .insertInto('administrator') .values({ "cognitoId": "nil", "subaccountInfo": json }) .execute() ``` But I can't record anything, I don't know where I'm going wrong...