SchemaCreateResponse
Response from creating a new extraction schema.
Example Usage
typescript
import { SchemaCreateResponse } from "@meetkai/mka1/models/components";
let value: SchemaCreateResponse = {
success: true,
data: {
id: "<id>",
name: "<value>",
schema: {},
createdAt: "1709022442346",
updatedAt: "1735603740908",
},
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | ✔️ | Indicates whether the schema creation was successful |
data | components.SchemaCreateResponseData | ✔️ | The created extraction schema with generated ID and timestamps |