Atlassian · Schema

JiraExpressionsComplexityValueBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
limit integer The maximum allowed complexity. The evaluation will fail if this value is exceeded.
value integer The complexity value of the current expression.
View JSON Schema on GitHub

JSON Schema

atlassian-jiraexpressionscomplexityvaluebean-schema.json Raw ↑
{
  "$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"
}