# Logs field reference

Supabase Logs field reference

Refer to the full field reference for each available source below. To access each nested key, you need to perform the [necessary unnesting joins](/docs/guides/telemetry/advanced-log-filtering#unnesting-arrays)

{(logConstants) => (

{logConstants.schemas.map((schema) => (

<table>
<thead>
<tr>
<th className="font-bold">Path</th>
<th className="font-bold">Type</th>
</tr>
</thead>
<tbody>
{schema.fields
.sort((a, b) => a.path - b.path)
.map((field) => (
<tr key={field.path}>
<td className="font-mono">{field.path}</td>
<td className="font-mono">{field.type}</td>
</tr>
))}
</tbody>
</table>

))}

)}