Pydantic models for document section spans.
SectionSpan
Bases: BasePydanticModel
Character span of a document section with a normalised label.
Source code in ontocast/onto/section_models.py
| class SectionSpan(BasePydanticModel):
"""Character span of a document section with a normalised label."""
label: str
start: int
end: int
|