Set the hue to 90 degrees and the saturation to 1.0:

hue=h=90:s=1

Same command but expressing the hue in radians:

hue=H=PI/2:s=1

Rotate hue and make the saturation swing between 0 and 2 over a period of 1 second:

hue="H=2*PI*t: s=sin(2*PI*t)+1"

Apply a 3 seconds saturation fade-in effect starting at 0:

hue="s=min(t/3\,1)"

The general fade-in expression can be written as:

hue="s=min(0\, max((t-START)/DURATION\, 1))"

Apply a 3 seconds saturation fade-out effect starting at 5 seconds:

hue="s=max(0\, min(1\, (8-t)/3))"

The general fade-out expression can be written as:

hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"