SchemaCreateResponseData
The created extraction schema with generated ID and timestamps
Example Usage
typescript
import { SchemaCreateResponseData } from "@meetkai/mka1/models/components";
let value: SchemaCreateResponseData = {
id: "<id>",
name: "<value>",
schema: {
"key": "<value>",
"key1": "<value>",
"key2": "<value>",
},
createdAt: "1726154226456",
updatedAt: "1735650290647",
};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 |