package annotations
Type Members
-
case class
AQAnnotation(docId: String, annotSet: String, annotType: String, startOffset: Long, endOffset: Long, annotId: Long, properties: Option[Map[String, String]] = None) extends Product with Serializable
AQAnnotation.
AQAnnotation.
- docId
Document Id (PII)
- annotSet
Annotation set (such as scnlp, ge)
- annotType
Annotation type (such as text, sentence)
- startOffset
Starting offset for the annotation (based on the text file for the document)
- endOffset
Ending offset for the annotation (based on the text file for the document)
- annotId
Annotation Id (after the annotations have been reordered)
- properties
Map of key-value properties
-
case class
CATAnnotation(docId: String, annotSet: String, annotType: String, startOffset: Long, endOffset: Long, annotId: Long, other: Option[String] = None) extends Product with Serializable
CATAnnotation.
CATAnnotation.
- docId
Document Id (PII)
- annotSet
Annotation set (such as scnlp, ge)
- annotType
Annotation type (such as text, sentence)
- startOffset
Starting offset for the annotation (based on the text file for the document)
- endOffset
Ending offset for the annotation (based on the text file for the document)
- annotId
Annotation Id (after the annotations have been reordered)
- other
Contains any attributes such as exclude annotations, original annotation id, parent id, etc.