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-policyupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PolicyUpdateRequest",
  "title": "PolicyUpdateRequest",
  "type": "object",
  "description": "Request body for updating a policy.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The updated display name for the policy.",
      "example": "Example Title"
    },
    "status": {
      "type": "string",
      "description": "The updated status for the policy.",
      "enum": [
        "enabled",
        "disabled"
      ],
      "example": "enabled"
    },
    "attributes": {
      "type": "object",
      "description": "Updated policy-specific configuration attributes.",
      "additionalProperties": true,
      "example": "example_value"
    }
  }
}