Skip to content

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

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