Skip to content

UpdateExtractSchemaData

The updated extraction schema with new updatedAt timestamp

Example Usage

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

let value: UpdateExtractSchemaData = {
  id: "<id>",
  name: "<value>",
  schema: {
    "key": "<value>",
    "key1": "<value>",
    "key2": "<value>",
  },
  createdAt: "1707844873843",
  updatedAt: "1735635770191",
};

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