My n8n nodes are showing schema adn table but not Json? can anyone explain why is this happenign and whats the fix?

@RGT_Light json is right there, its the tab top-right next to Table, schema/table/json are just different views of the same data and schema is the default. click JSON and itll switch to the raw json. if it comes up empty when you click it lmk what shows.

@RGT_Light

Click here

its blank, thats the issue,

This is expected. All your scores are less than 50

no brother, it’s input, not the output,

if you see my other pics, you can see it’s showing this data if i view it as a table

it’s usually the most obvious things we overlook

Hey @RGT_Light, this usually means the data underneath has a structural issue that the JSON renderer chokes on even though Table/Schema can still display it from the inferred keys. A couple of things to try:

Check for BigInt, Date objects, or circular references in the upstream data, if a previous node (especially a Code node or a DB query) returns one of these, n8n’s Table/Schema view can often still render it from field names, but the raw JSON view fails silently because it can’t serialize the value.

Click on the node and check the bottom-left for any small red error/warning triangle, sometimes there’s a rendering error logged there even when the canvas itself shows no red X.

Open browser DevTools (F12) → Console tab, then click the JSON view again, if there’s a JS error during render, it’ll show up there and tell us exactly what’s breaking it.

As a workaround, add a Code node right before this one with return $input.all(); this often “flattens” any problematic data types and restores the JSON view downstream.

If you can share what DevTools shows when you click JSON, that’ll pinpoint it fast.