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