diff --git a/README.md b/README.md
index 9dc7c53a6fe28374b864a5b103c053a3326d51db..66cf287c5495cce35d7c8f90a42d9df9eedc1f8f 100644
--- a/README.md
+++ b/README.md
@@ -166,6 +166,7 @@ Next change the version in the following places:
 
 # Release Notes
 
+* 0.30.2-2 Fix typo in parsing XST observation settings
 * 0.30.2 Add XST/SST settings to Observation specifications
          Fixed dimensionality of xst.FPGA_subband_select_R(W)
 * 0.30.1 Remove deprecated FPGA_beamlet_output_nof_beamlets
diff --git a/tangostationcontrol/tangostationcontrol/configuration/observation_field_settings.py b/tangostationcontrol/tangostationcontrol/configuration/observation_field_settings.py
index 51349377d9859aa8ecba6c33ecc6f0ed8b442766..8988fa8c50bedbdf1082e506778921c79021027d 100644
--- a/tangostationcontrol/tangostationcontrol/configuration/observation_field_settings.py
+++ b/tangostationcontrol/tangostationcontrol/configuration/observation_field_settings.py
@@ -77,7 +77,7 @@ class ObservationFieldSettings(_ConfigurationBase):
         if self.SST is not None:
             yield "SST", dict(self.SST)
         if self.XST is not None:
-            yield "SST", dict(self.XST)
+            yield "XST", dict(self.XST)
 
     @staticmethod
     def to_object(json_dct) -> "ObservationFieldSettings":