Skip to content

Variable: JqlQueryOrderByClauseSchema

ts
const JqlQueryOrderByClauseSchema: ZodObject<{
  fields: ZodArray<ZodObject<{
     direction: ZodOptional<ZodCustom<"desc" | string & object | "asc", "desc" | string & object | "asc">>;
     field: ZodObject<{
        encodedName: ZodOptional<ZodString>;
        name: ZodString;
        property: ZodOptional<ZodArray<ZodObject<{
           entity: ...;
           key: ...;
           path: ...;
           type: ...;
        }, $loose>>>;
     }, $loose>;
  }, $loose>>;
}, $loose>;

Defined in: src/cloud/models/jqlQueryOrderByClause.ts:6

Details of the order-by JQL clause.