Atlassian · Schema

SanitizedJqlQueries

The sanitized JQL queries for the given account IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
queries array The list of sanitized JQL queries.
View JSON Schema on GitHub

JSON Schema

atlassian-sanitizedjqlqueries-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SanitizedJqlQueries",
  "title": "SanitizedJqlQueries",
  "additionalProperties": false,
  "description": "The sanitized JQL queries for the given account IDs.",
  "properties": {
    "queries": {
      "description": "The list of sanitized JQL queries.",
      "items": {
        "$ref": "#/components/schemas/SanitizedJqlQuery"
      },
      "type": "array"
    }
  },
  "type": "object"
}