Is it possible for FsCheck to generate random records that respect the MaxLengthAttribute. Example record type:
type Person =
{
Id: int
[<System.ComponentModel.DataAnnotations.MaxLength(256)>]
FirstName: string
[<System.ComponentModel.DataAnnotations.MaxLength(256)>]
LastName: string
}