SchemaUpdateResponseData
The updated extraction schema with new updatedAt timestamp
Example Usage
typescript
import { SchemaUpdateResponseData } from "@meetkai/mka1/models/components";
let value: SchemaUpdateResponseData = {
id: "<id>",
name: "<value>",
schema: {},
createdAt: "1723355924808",
updatedAt: "1735623545717",
};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 |