Atlassian · Schema
JqlFunctionPrecomputationBean
Jql function precomputation.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| arguments | array | The list of arguments function was invoked with. |
| created | string | The timestamp of the precomputation creation. |
| error | string | The error message to be displayed to the user. |
| field | string | The field the function was executed against. |
| functionKey | string | The function key. |
| functionName | string | The name of the function. |
| id | string | The id of the precomputation. |
| operator | string | The operator in context of which function was executed. |
| updated | string | The timestamp of the precomputation last update. |
| used | string | The timestamp of the precomputation last usage. |
| value | string | The JQL fragment stored as the precomputation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JqlFunctionPrecomputationBean",
"title": "JqlFunctionPrecomputationBean",
"additionalProperties": false,
"description": "Jql function precomputation.",
"properties": {
"arguments": {
"description": "The list of arguments function was invoked with.",
"items": {
"readOnly": true,
"type": "string"
},
"readOnly": true,
"type": "array"
},
"created": {
"description": "The timestamp of the precomputation creation.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"error": {
"description": "The error message to be displayed to the user.",
"readOnly": true,
"type": "string"
},
"field": {
"description": "The field the function was executed against.",
"readOnly": true,
"type": "string"
},
"functionKey": {
"description": "The function key.",
"readOnly": true,
"type": "string"
},
"functionName": {
"description": "The name of the function.",
"readOnly": true,
"type": "string"
},
"id": {
"description": "The id of the precomputation.",
"readOnly": true,
"type": "string"
},
"operator": {
"description": "The operator in context of which function was executed.",
"readOnly": true,
"type": "string"
},
"updated": {
"description": "The timestamp of the precomputation last update.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"used": {
"description": "The timestamp of the precomputation last usage.",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"value": {
"description": "The JQL fragment stored as the precomputation.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
}