packagegen// Seed the RangeSeed: { @task(gen.Seed)// only set to ensure consistent output while testing seed?: int// defaults to time.Now()}Int: { @task(gen.Int) max?: int// max value if set// the random val returned val: int}Str: { @task(gen.Str)// number of runes to generate n: int|*12// possible runes, defaults to [a-zA-Z] runes?: string}// the other tasks don't really have schema or inputc: string @task(gen.CUID) // like UUID, but for cloudf: float @task(gen.Float)n: float @task(gen.Norm)t: string @task(gen.Now) // RFC-3339s: string @task(gen.Slug) // related to CUIDu: string @task(gen.UUID)