Variable: JiraExpressionAnalysisSchema
ts
const JiraExpressionAnalysisSchema: ZodObject<{
complexity: ZodOptional<ZodObject<{
expensiveOperations: ZodString;
variables: ZodOptional<ZodRecord<ZodString, ZodAny>>;
}, $loose>>;
errors: ZodOptional<ZodArray<ZodObject<{
column: ZodOptional<ZodNumber>;
expression: ZodOptional<ZodString>;
line: ZodOptional<ZodNumber>;
message: ZodString;
type: ZodCustom<"type" | "other" | string & object | "syntax", "type" | "other" | string & object | "syntax">;
}, $loose>>>;
expression: ZodString;
type: ZodOptional<ZodString>;
valid: ZodBoolean;
}, $loose>;Defined in: src/cloud/models/jiraExpressionAnalysis.ts:7
Details about the analysed Jira expression.