ForgeRock · Schema
Rule
An entitlement assignment rule from the AI model
Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| entitlement | string | Entitlement this rule applies to |
| application | string | |
| conditions | array | Attribute conditions that define this rule |
| confidenceScore | number | Confidence score for assignments matching this rule |
| coverageCount | integer | Number of users matching this rule |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Rule",
"title": "Rule",
"type": "object",
"description": "An entitlement assignment rule from the AI model",
"properties": {
"id": {
"type": "string"
},
"entitlement": {
"type": "string",
"description": "Entitlement this rule applies to"
},
"application": {
"type": "string"
},
"conditions": {
"type": "array",
"description": "Attribute conditions that define this rule",
"items": {
"type": "object",
"properties": {
"attribute": {
"type": "string"
},
"operator": {
"type": "string",
"enum": [
"equals",
"contains",
"startsWith"
]
},
"value": {
"type": "string"
}
}
}
},
"confidenceScore": {
"type": "number",
"description": "Confidence score for assignments matching this rule"
},
"coverageCount": {
"type": "integer",
"description": "Number of users matching this rule"
}
}
}