Atlassian · Schema

JqlQueryClauseTimePredicate

A time predicate for a temporal JQL clause.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
operand object
operator string The operator between the field and the operand.
View JSON Schema on GitHub

JSON Schema

atlassian-jqlqueryclausetimepredicate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JqlQueryClauseTimePredicate",
  "title": "JqlQueryClauseTimePredicate",
  "description": "A time predicate for a temporal JQL clause.",
  "properties": {
    "operand": {
      "$ref": "#/components/schemas/JqlQueryClauseOperand"
    },
    "operator": {
      "description": "The operator between the field and the operand.",
      "enum": [
        "before",
        "after",
        "from",
        "to",
        "on",
        "during",
        "by"
      ],
      "type": "string"
    }
  },
  "required": [
    "operand",
    "operator"
  ],
  "type": "object"
}