action jira_get_all_user_data_classification_levels { label: "Get all classification levels" description: "Returns all classification levels.\n\n**[Permissions](#permissions) required:** None." provider: jira method: GET path: "/rest/api/3/classification-levels" encoding: json input: { type: "object" properties: { orderBy: { type: "string" enum: ["rank", "-rank", "+rank"] } status: { type: "array" items: { type: "string" description: "The status of the project classification." enum: ["PUBLISHED", "ARCHIVED", "DRAFT"] } } } additionalProperties: false } output: { type: "object" description: "The data classification." properties: { classifications: { type: "array" description: "The data classifications." items: { type: "object" description: "The data classification." required: ["id", "status"] properties: { color: { type: "string" description: "The color of the data classification object." } description: { type: "string" description: "The description of the data classification object." } guideline: { type: "string" description: "The guideline of the data classification object." } guidelineADF: { type: "string" description: "The guideline in ADF (Atlassian Document Format) for rich text rendering." } id: { type: "string" description: "The ID of the data classification object." } name: { type: "string" description: "The name of the data classification object." } rank: { type: "integer" format: "int32" description: "The rank of the data classification object." } status: { type: "string" description: "The status of the data classification object." } } additionalProperties: false } } } additionalProperties: false } }