Values.SchemaFieldSourceContains details about a schema field.
type nonrec t = {id : Integer.t option;An optional unique identifier for the schema field. Field IDs are used by Apache Iceberg to track schema evolution and maintain compatibility across schema changes. If not specified, S3 Tables automatically assigns field IDs.
*)name : String_.t;The name of the field.
*)type_ : String_.t;The field type. S3 Tables supports all Apache Iceberg primitive types. For more information, see the Apache Iceberg documentation.
*)required : Boolean.t option;A Boolean value that specifies whether values are required for each row in this field. By default, this is false and null values are allowed in the field. If this is true the field does not allow null values.
*)}