Hi! I am working on building a new provider using ...
# package-authoring
w
Hi! I am working on building a new provider using
pulumi-go-provider
and having some trouble annotating a nested data structure:
Copy code
type Inputs struct {
	Children *[]Child `pulumi:"children,optional"`
}

type Child struct {
	Name string `pulumi:"name"`
}

func (c *Inputs) Annotate(a infer.Annotator) {
	a.Describe(???, "Name description")
}
Is this something that is not yet supported?