Skip to content

SchemaCreateResponse

Response from creating a new extraction schema.

Example Usage

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

let value: SchemaCreateResponse = {
  success: true,
  data: {
    id: "<id>",
    name: "<value>",
    schema: {},
    createdAt: "1709022442346",
    updatedAt: "1735603740908",
  },
};

Fields

FieldTypeRequiredDescription
successboolean✔️Indicates whether the schema creation was successful
datacomponents.SchemaCreateResponseData✔️The created extraction schema with generated ID and timestamps