Skip to content

Variable: JqlQueryFieldSchema

ts
const JqlQueryFieldSchema: ZodObject<{
  encodedName: ZodOptional<ZodString>;
  name: ZodString;
  property: ZodOptional<ZodArray<ZodObject<{
     entity: ZodString;
     key: ZodString;
     path: ZodString;
     type: ZodOptional<ZodCustom<"string" | "number" | "text" | "user" | string & object | "date", "string" | "number" | "text" | "user" | string & object | "date">>;
  }, $loose>>>;
}, $loose>;

Defined in: src/cloud/models/jqlQueryField.ts:9

A field used in a JQL query. See Advanced searching - fields reference for more information about fields in JQL queries.