Field Descriptions
Use custom field descriptions to provide additional information about each field in the data source.
The field_descriptions
is a dictionary attribute of the BaseConnector
class. It is used to provide additional information or descriptions about each individual field in the data source. This can be useful for providing context or explanations for the data in each field, especially when the field names themselves are not self-explanatory.
Here’s an example of how you might use field_descriptions
:
In this example, user_id
, payment_id
, and payment_provider
are the names of the fields in the data source, and the corresponding values are descriptions of what each field represents.
When initializing a BaseConnector
instance (or any other connector), you can pass in this field_descriptions
dictionary as an argument:
Another example using a pandas connector:
Was this page helpful?