Atlassian · Schema

JqlQueriesToSanitize

The list of JQL queries to sanitize for the given account IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
queries array The list of JQL queries to sanitize. Must contain unique values. Maximum of 20 queries.
View JSON Schema on GitHub

JSON Schema

atlassian-jqlqueriestosanitize-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JqlQueriesToSanitize",
  "title": "JqlQueriesToSanitize",
  "additionalProperties": false,
  "description": "The list of JQL queries to sanitize for the given account IDs.",
  "properties": {
    "queries": {
      "description": "The list of JQL queries to sanitize. Must contain unique values. Maximum of 20 queries.",
      "items": {
        "$ref": "#/components/schemas/JqlQueryToSanitize"
      },
      "type": "array"
    }
  },
  "required": [
    "queries"
  ],
  "type": "object",
  "writeOnly": true
}