Skip to content

CreateEvalScheduleRequest

Example Usage

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

let value: CreateEvalScheduleRequest = {
  name: "<value>",
  suiteId: "<id>",
  run: {
    models: [],
  },
};

Fields

FieldTypeRequiredDescription
namestring✔️N/A
descriptionstringN/A
suiteIdstring✔️N/A
suiteVersionnumberPin a suite version. Omit to resolve the active version on each fire.
cronstring5-field cron expression. Provide exactly one of cron or interval_seconds.
intervalSecondsnumberFixed interval between fires, in seconds. Provide exactly one of cron or interval_seconds.
timezonestringIANA timezone applied to cron expressions, for example US/Pacific.
overlapPolicycomponents.EvalScheduleOverlapPolicyN/A
enabledbooleanWhen false, the schedule is created paused.
webhookUrlstringHTTPS endpoint notified of run status transitions.
webhookSecretstringSecret used to HMAC-SHA256 sign webhook payloads.
runcomponents.EvalScheduleRunConfig✔️N/A
metadataRecord<string, string>N/A