ExtractionResponseMetadata
Metadata about the extraction request and execution
Example Usage
typescript
import { ExtractionResponseMetadata } from "@meetkai/mka1/models/components";
let value: ExtractionResponseMetadata = {
model: "Roadster",
filename: "example.file",
fileSize: 7865.99,
extractedAt: "<value>",
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
model | string | ✔️ | The model that was used to perform the extraction |
filename | string | ✔️ | The name of the file that was processed |
fileSize | number | ✔️ | The size of the processed file in bytes |
extractedAt | string | ✔️ | ISO 8601 timestamp indicating when the extraction was performed |
schemaId | string | ➖ | The ID of the extraction schema that was used (only present when using a saved schema) |
schemaName | string | ➖ | The name of the extraction schema that was used (only present when using a saved schema) |