Feature Request / Improvement
Right now we expect to pass in the actual string:
schema = Schema(
NestedField(1, 'foo', StringType())
)
I think it would be nice to also allow strings:
schema = Schema(
NestedField(1, 'foo', 'string')
)
At the same time, we should reject complex types (list/map/struct).