Result of running artifact extraction on content.

interface ArtifactExtractionResult {
    attributes: ExtractedArtifactAttribute[];
    errors: {
        error: string;
        ruleName: string;
    }[];
    executionTimeMs: number;
    success: boolean;
}

Properties

Array of successfully extracted attributes

errors: {
    error: string;
    ruleName: string;
}[]

Array of errors that occurred during extraction

Type declaration

  • error: string
  • ruleName: string
executionTimeMs: number

Total extraction time in milliseconds

success: boolean

Whether the extraction completed successfully