Skip to content

SchemaUpdateResponseData

The updated extraction schema with new updatedAt timestamp

Example Usage

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

let value: SchemaUpdateResponseData = {
  id: "<id>",
  name: "<value>",
  schema: {},
  createdAt: "1723355924808",
  updatedAt: "1735623545717",
};

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