diff --git a/saqc/__init__.py b/saqc/__init__.py
index 29e0b55c57f390c1c426c31e6da2d7a8c79c8de5..a801471cfe57053267271de325717b35e8a0233f 100644
--- a/saqc/__init__.py
+++ b/saqc/__init__.py
@@ -10,7 +10,13 @@
 from saqc.constants import BAD, DOUBTFUL, FILTER_ALL, FILTER_NONE, GOOD, UNFLAGGED
 from saqc.exceptions import ParsingError
 from saqc.core import Flags, DictOfSeries, SaQC
-from saqc.core.translation import DmpScheme, FloatScheme, PositionalScheme, SimpleScheme
+from saqc.core.translation import (
+    DmpScheme,
+    FloatScheme,
+    PositionalScheme,
+    SimpleScheme,
+    AnnotatedFloatScheme,
+)
 from saqc.parsing.reader import fromConfig
 from saqc.version import __version__
 
diff --git a/saqc/core/core.py b/saqc/core/core.py
index c1c9d7451b29d4d630f1e54f7e8725b683ee889e..c669da5672c4a2f8e4db344605bcb5fd5f24193c 100644
--- a/saqc/core/core.py
+++ b/saqc/core/core.py
@@ -22,6 +22,7 @@ from saqc.core.frame import DictOfSeries
 from saqc.core.history import History
 from saqc.core.register import FUNC_MAP
 from saqc.core.translation import (
+    AnnotatedFloatScheme,
     DmpScheme,
     FloatScheme,
     PositionalScheme,
@@ -41,6 +42,7 @@ TRANSLATION_SCHEMES = {
     "float": FloatScheme,
     "dmp": DmpScheme,
     "positional": PositionalScheme,
+    "annotated-float": AnnotatedFloatScheme,
 }