Citrix · Schema
AccessPolicy
Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Policy unique identifier |
| name | string | Policy name |
| description | string | Policy description |
| enabled | boolean | Whether the policy is active |
| priority | integer | Policy evaluation priority |
| conditions | object | Policy conditions for matching |
| actions | object | Actions to apply when policy matches |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccessPolicy",
"title": "AccessPolicy",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "Policy unique identifier"
},
"name": {
"type": "string",
"description": "Policy name"
},
"description": {
"type": "string",
"description": "Policy description"
},
"enabled": {
"type": "boolean",
"description": "Whether the policy is active"
},
"priority": {
"type": "integer",
"description": "Policy evaluation priority"
},
"conditions": {
"type": "object",
"description": "Policy conditions for matching"
},
"actions": {
"type": "object",
"description": "Actions to apply when policy matches"
}
}
}