SchemaGetResponse
Response from retrieving an extraction schema by ID.
Example Usage
typescript
import { SchemaGetResponse } from "@meetkai/mka1/models/components";
let value: SchemaGetResponse = {
success: false,
data: {
id: "<id>",
name: "<value>",
schema: {
"key": "<value>",
"key1": "<value>",
"key2": "<value>",
},
createdAt: "1710430678571",
updatedAt: "1735640753329",
},
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | ✔️ | Indicates whether the schema retrieval was successful |
data | components.SchemaGetResponseData | ✔️ | The requested extraction schema |