Atlassian · Schema
JiraExpressionEvaluationMetaDataBean
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| complexity | object | Contains information about the expression complexity. For example, the number of steps it took to evaluate the expression. |
| issues | object | Contains information about the `issues` variable in the context. For example, is the issues were loaded with JQL, information about the page will be included here. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JiraExpressionEvaluationMetaDataBean",
"title": "JiraExpressionEvaluationMetaDataBean",
"additionalProperties": false,
"properties": {
"complexity": {
"allOf": [
{
"$ref": "#/components/schemas/JiraExpressionsComplexityBean"
}
],
"description": "Contains information about the expression complexity. For example, the number of steps it took to evaluate the expression."
},
"issues": {
"allOf": [
{
"$ref": "#/components/schemas/IssuesMetaBean"
}
],
"description": "Contains information about the `issues` variable in the context. For example, is the issues were loaded with JQL, information about the page will be included here."
}
},
"type": "object"
}