GetExtractSchemaData
The requested extraction schema
Example Usage
typescript
import { GetExtractSchemaData } from "@meetkai/mka1/models/operations";
let value: GetExtractSchemaData = {
id: "<id>",
name: "<value>",
schema: {
"key": "<value>",
"key1": "<value>",
},
createdAt: "1728214663686",
updatedAt: "1735658332711",
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string | ✔️ | Unique identifier for the extraction schema |
name | string | ✔️ | Name of the extraction schema |
description | string | ➖ | Optional description of the schema |
schema | Record<string, any> | ✔️ | The JSON Schema object defining the extraction structure |
metadata | Record<string, any> | ➖ | Optional metadata associated with the schema |
createdAt | string | ✔️ | ISO 8601 timestamp when the schema was created |
updatedAt | string | ✔️ | ISO 8601 timestamp when the schema was last updated |