# Table.schema
URL: https://lsd.tools/docs/api-table-schema
Updated: 2026-07-17

## Example

```python
t.schema                # pyarrow.Schema
t.schema.names          # ['name', 'score']
t.schema.field("score").type
```

## Notes

`schema` is the same `pyarrow.Schema` the wrapped table carries. For just the names,
[`columns`](/docs/api-table-columns) is a shorter list of strings.

## See also

**API:** [columns](/docs/api-table-columns) · [arrow](/docs/api-table-arrow)

**Guides:** [Tables & data flow](/docs/tools-tables)
