Atlassian · Schema

SanitizedJqlQuery

Details of the sanitized JQL query.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
accountId string The account ID of the user for whom sanitization was performed.
errors object The list of errors.
initialQuery string The initial query.
sanitizedQuery string The sanitized query, if there were no errors.
View JSON Schema on GitHub

JSON Schema

atlassian-sanitizedjqlquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SanitizedJqlQuery",
  "title": "SanitizedJqlQuery",
  "additionalProperties": false,
  "description": "Details of the sanitized JQL query.",
  "properties": {
    "accountId": {
      "description": "The account ID of the user for whom sanitization was performed.",
      "maxLength": 128,
      "nullable": true,
      "type": "string"
    },
    "errors": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorCollection"
        }
      ],
      "description": "The list of errors."
    },
    "initialQuery": {
      "description": "The initial query.",
      "type": "string"
    },
    "sanitizedQuery": {
      "description": "The sanitized query, if there were no errors.",
      "nullable": true,
      "type": "string"
    }
  },
  "type": "object"
}