are nested fields currently supported in structure...
# flytekit
f
are nested fields currently supported in structured datasets?
f
What type of fields
f
basically struct columns
or array columns
f
It think you can, and in the worst case do not. Declare it
f
sorry can you elaborate 🙂
f
Don’t have typed columns
f
tried the following
Copy code
@dataclass_json
@dataclass
class LevelCodes:
    level1: str
    level2: str

AllocatedPNLOutputSchema = Annotated[
    StructuredDataset,
    kwtypes(
        date=dt.datetime,
        fsli=LevelCodes,
        ...
t
no currently just lists and dicts are supported, but i don’t think this is a hard thing to do.
can you put in an issue for it?
f
sure can!