{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JiraExpressionsComplexityValueBean",
"title": "JiraExpressionsComplexityValueBean",
"additionalProperties": false,
"properties": {
"limit": {
"description": "The maximum allowed complexity. The evaluation will fail if this value is exceeded.",
"format": "int32",
"type": "integer"
},
"value": {
"description": "The complexity value of the current expression.",
"format": "int32",
"type": "integer"
}
},
"required": [
"limit",
"value"
],
"type": "object"
}