Variable JqlQueryFieldSchemaConst
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 & {}
| "date",
"string" | "number" | "text" | "user" | string & {} | "date",
>,
>;
},
$loose,
>,
>,
>;
},
$loose,
> = ...
A field used in a JQL query. See Advanced searching - fields reference for more information about fields in JQL queries.