Skip to content

Variable: CreateSchedulingRequestSchema

ts
const CreateSchedulingRequestSchema: ZodObject<{
  dependencies: ZodOptional<ZodCustom<string & object | "Sequential" | "Concurrent", string & object | "Sequential" | "Concurrent">>;
  endDate: ZodOptional<ZodObject<{
     dateCustomFieldId: ZodOptional<ZodNumber>;
     type: ZodCustom<
        | string & object
        | "DueDate"
        | "TargetStartDate"
        | "TargetEndDate"
        | "DateCustomField", 
        | string & object
        | "DueDate"
        | "TargetStartDate"
        | "TargetEndDate"
       | "DateCustomField">;
  }, $loose>>;
  estimation: ZodCustom<string & object | "StoryPoints" | "Days" | "Hours", string & object | "StoryPoints" | "Days" | "Hours">;
  inferredDates: ZodOptional<ZodCustom<string & object | "None" | "SprintDates" | "ReleaseDates", string & object | "None" | "SprintDates" | "ReleaseDates">>;
  startDate: ZodOptional<ZodObject<{
     dateCustomFieldId: ZodOptional<ZodNumber>;
     type: ZodCustom<
        | string & object
        | "DueDate"
        | "TargetStartDate"
        | "TargetEndDate"
        | "DateCustomField", 
        | string & object
        | "DueDate"
        | "TargetStartDate"
        | "TargetEndDate"
       | "DateCustomField">;
  }, $loose>>;
}, $loose>;

Defined in: src/cloud/models/createSchedulingRequest.ts:5