Skip to content

SchemaGetResponse

Response from retrieving an extraction schema by ID.

Example Usage

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

let value: SchemaGetResponse = {
  success: false,
  data: {
    id: "<id>",
    name: "<value>",
    schema: {
      "key": "<value>",
      "key1": "<value>",
      "key2": "<value>",
    },
    createdAt: "1710430678571",
    updatedAt: "1735640753329",
  },
};

Fields

FieldTypeRequiredDescription
successboolean✔️Indicates whether the schema retrieval was successful
datacomponents.SchemaGetResponseData✔️The requested extraction schema