Atlassian · Schema

JQLQueryWithUnknownUsers

JQL queries that contained users that could not be found

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
convertedQuery string The converted query, with accountIDs instead of user identifiers, or 'unknown' for users that could not be found
originalQuery string The original query, for reference
View JSON Schema on GitHub

JSON Schema

atlassian-jqlquerywithunknownusers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JQLQueryWithUnknownUsers",
  "title": "JQLQueryWithUnknownUsers",
  "additionalProperties": false,
  "description": "JQL queries that contained users that could not be found",
  "properties": {
    "convertedQuery": {
      "description": "The converted query, with accountIDs instead of user identifiers, or 'unknown' for users that could not be found",
      "type": "string"
    },
    "originalQuery": {
      "description": "The original query, for reference",
      "type": "string"
    }
  },
  "type": "object"
}