Skip to content

SchemaUpdateResponse

Response from updating an existing extraction schema.

Example Usage

typescript
import { SchemaUpdateResponse } from "@meetkai/mka1/models/components";

let value: SchemaUpdateResponse = {
  success: true,
  data: {
    id: "<id>",
    name: "<value>",
    schema: {
      "key": "<value>",
      "key1": "<value>",
    },
    createdAt: "1721617879898",
    updatedAt: "1735669435381",
  },
};

Fields

FieldTypeRequiredDescription
successboolean✔️Indicates whether the schema update was successful
datacomponents.SchemaUpdateResponseData✔️The updated extraction schema with new updatedAt timestamp