Interface RossumAnnotationNodeDto

interface RossumAnnotationNodeDto {
    category?: string;
    children?: RossumAnnotationNodeDto[];
    content?: RossumAnnotationContentDto;
    id?: string;
    rir_confidence?: number;
    schema_id?: string;
    time_spent?: number;
    type?: string;
    url?: string;
    validation_sources?: string[];
    value?: string;
}

Properties

category?: string
id?: string
rir_confidence?: number
schema_id?: string
time_spent?: number
type?: string
url?: string
validation_sources?: string[]
value?: string