Atlassian · Schema

ConvertedJQLQueries

The converted JQL queries.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
queriesWithUnknownUsers array List of queries containing user information that could not be mapped to an existing user
queryStrings array The list of converted query strings with account IDs in place of user identifiers.
View JSON Schema on GitHub

JSON Schema

atlassian-convertedjqlqueries-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConvertedJQLQueries",
  "title": "ConvertedJQLQueries",
  "additionalProperties": false,
  "description": "The converted JQL queries.",
  "properties": {
    "queriesWithUnknownUsers": {
      "description": "List of queries containing user information that could not be mapped to an existing user",
      "items": {
        "$ref": "#/components/schemas/JQLQueryWithUnknownUsers"
      },
      "type": "array"
    },
    "queryStrings": {
      "description": "The list of converted query strings with account IDs in place of user identifiers.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}