Variable: JqlQueryOrderByClauseElementSchema
ts
const JqlQueryOrderByClauseElementSchema: ZodObject<{
direction: ZodOptional<ZodCustom<"desc" | string & object | "asc", "desc" | string & object | "asc">>;
field: ZodObject<{
encodedName: ZodOptional<ZodString>;
name: ZodString;
property: ZodOptional<ZodArray<ZodObject<{
entity: ZodString;
key: ZodString;
path: ZodString;
type: ZodOptional<ZodCustom<... | ... | ... | ... | ... | ..., ... | ... | ... | ... | ... | ...>>;
}, $loose>>>;
}, $loose>;
}, $loose>;Defined in: src/cloud/models/jqlQueryOrderByClauseElement.ts:6
An element of the order-by JQL clause.