Field Guide
Field is a lower level object that helps describe and convert tabular data.
Creating Field#
Let's create a field:
Python
Usually we work with fields which were already created by a schema:
Python
Field Types#
Frictionless Framework supports all the Table Schema Spec field types along with an ability to create custom types.
For some types there are additional properties available:
Python
Reading Cell#
During the process of data reading a schema uses a field internally. If needed a user can convert their data using this interface:
Python
Writing Cell#
During the process of data writing a schema uses a field internally. The same as with reasing a user can convert their data using this interface:
Python

