SchemaUpdateResponse
Response from updating an existing extraction schema.
Example Usage
typescript
import { SchemaUpdateResponse } from "@meetkai/mka1/models/components";
let value: SchemaUpdateResponse = {
success: true,
data: {
id: "<id>",
name: "<value>",
schema: {
"key": "<value>",
"key1": "<value>",
},
createdAt: "1721617879898",
updatedAt: "1735669435381",
},
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | ✔️ | Indicates whether the schema update was successful |
data | components.SchemaUpdateResponseData | ✔️ | The updated extraction schema with new updatedAt timestamp |