ForgeRock · Schema
ManagedRole
A managed role object
Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect
Properties
| Name | Type | Description |
|---|---|---|
| _id | string | Unique identifier |
| _rev | string | Object revision |
| name | string | Role name |
| description | string | Role description |
| condition | string | Conditional role membership filter expression |
| temporalConstraints | array | Time-based constraints for role activation |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ManagedRole",
"title": "ManagedRole",
"type": "object",
"description": "A managed role object",
"properties": {
"_id": {
"type": "string",
"description": "Unique identifier",
"readOnly": true
},
"_rev": {
"type": "string",
"description": "Object revision",
"readOnly": true
},
"name": {
"type": "string",
"description": "Role name"
},
"description": {
"type": "string",
"description": "Role description"
},
"condition": {
"type": "string",
"description": "Conditional role membership filter expression"
},
"temporalConstraints": {
"type": "array",
"description": "Time-based constraints for role activation",
"items": {
"type": "object",
"properties": {
"duration": {
"type": "string",
"description": "ISO 8601 time interval"
}
}
}
}
}
}