Atlassian · Schema

JqlFunctionPrecomputationUpdateBean

Precomputation id and its new value.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
error string The error message to be displayed to the user if the given function clause is no longer valid during recalculation of the precomputation.
id string The id of the precomputation to update.
value string The new value of the precomputation.
View JSON Schema on GitHub

JSON Schema

atlassian-jqlfunctionprecomputationupdatebean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JqlFunctionPrecomputationUpdateBean",
  "title": "JqlFunctionPrecomputationUpdateBean",
  "additionalProperties": false,
  "description": "Precomputation id and its new value.",
  "properties": {
    "error": {
      "description": "The error message to be displayed to the user if the given function clause is no longer valid during recalculation of the precomputation.",
      "type": "string",
      "writeOnly": true
    },
    "id": {
      "description": "The id of the precomputation to update.",
      "type": "string",
      "writeOnly": true
    },
    "value": {
      "description": "The new value of the precomputation.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "id"
  ],
  "type": "object",
  "writeOnly": true
}