Skip to content

CreateExtractSchemaData

The created extraction schema with generated ID and timestamps

Example Usage

typescript
import { CreateExtractSchemaData } from "@meetkai/mka1/models/operations";

let value: CreateExtractSchemaData = {
  id: "<id>",
  name: "<value>",
  schema: {
    "key": "<value>",
    "key1": "<value>",
    "key2": "<value>",
  },
  createdAt: "1735228972411",
  updatedAt: "1735622222094",
};

Fields

FieldTypeRequiredDescription
idstring✔️Unique identifier for the extraction schema
namestring✔️Name of the extraction schema
descriptionstringOptional description of the schema
schemaRecord<string, any>✔️The JSON Schema object defining the extraction structure
metadataRecord<string, any>Optional metadata associated with the schema
createdAtstring✔️ISO 8601 timestamp when the schema was created
updatedAtstring✔️ISO 8601 timestamp when the schema was last updated