Request body for updating a policy.
{ "$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" } } }