The standard_name CF property of each field.
fl.standard_name is equivalent to cf.List(f.standard_name for f in fl).
fl.standard_name = value is equivalent to for f in fl: f.standard_name = value.
del fl.standard_name is equivalent to for f in fl: del f.standard_name.
See cf.Field.standard_name for details.