Variable: JqlQueryClauseTimePredicateSchema
ts
const JqlQueryClauseTimePredicateSchema: ZodObject<{
operand: ZodUnion<readonly [ZodObject<{
encodedOperand: ZodOptional<ZodString>;
values: ZodArray<ZodUnion<readonly [ZodObject<{
encodedValue: ...;
value: ...;
}, $loose>, ZodObject<{
arguments: ...;
encodedOperand: ...;
function: ...;
}, $loose>, ZodObject<{
keyword: ...;
}, $loose>]>>;
}, $loose>, ZodObject<{
encodedValue: ZodOptional<ZodString>;
value: ZodString;
}, $loose>, ZodObject<{
arguments: ZodArray<ZodString>;
encodedOperand: ZodOptional<ZodString>;
function: ZodString;
}, $loose>, ZodObject<{
keyword: ZodCustom<"empty" | string & object, "empty" | string & object>;
}, $loose>]>;
operator: ZodCustom<
| "on"
| "after"
| "before"
| string & object
| "from"
| "to"
| "during"
| "by",
| "on"
| "after"
| "before"
| string & object
| "from"
| "to"
| "during"
| "by">;
}, $loose>;Defined in: src/cloud/models/jqlQueryClauseTimePredicate.ts:6
A time predicate for a temporal JQL clause.