Atlassian · Schema

PolicyUpdateRequest

Request body for updating a policy.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
name string The updated display name for the policy.
status string The updated status for the policy.
attributes object Updated policy-specific configuration attributes.
View JSON Schema on GitHub

JSON Schema

atlassian-admin-policy-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PolicyUpdateRequest",
  "type": "object",
  "description": "Request body for updating a policy.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The updated display name for the policy."
    },
    "status": {
      "type": "string",
      "description": "The updated status for the policy."
    },
    "attributes": {
      "type": "object",
      "description": "Updated policy-specific configuration attributes."
    }
  }
}