Skip to content

AnnotationEventFieldSource🔗

Annotation event field source. Defines how to obtain the value for an annotation event field.

  • "field": Find the value with a matching key (default)

  • "text": Write a constant string into the value

  • "skip": Do not include the field

Definition🔗

class AnnotationEventFieldSource(enum.StrEnum):
    """
    Annotation event field source. Defines how to obtain the value for an annotation event field.
    - "field": Find the value with a matching key (default)
    - "text": Write a constant string into the value
    - "skip": Do not include the field
    """

    FIELD = "field"
    TEXT = "text"
    SKIP = "skip"