diff --git a/python/pyarrow/types.pxi b/python/pyarrow/types.pxi index 0d6787cf2a049..827243ce00e16 100644 --- a/python/pyarrow/types.pxi +++ b/python/pyarrow/types.pxi @@ -2549,7 +2549,11 @@ cdef class Field(_Weakrefable): @property def metadata(self): """ - The field metadata. + The field metadata (if any is set). + + Returns + ------- + metadata : dict or None Examples -------- @@ -2982,11 +2986,11 @@ cdef class Schema(_Weakrefable): @property def metadata(self): """ - The schema's metadata. + The schema's metadata (if any is set). Returns ------- - metadata: dict + metadata: dict or None Examples --------