ForgeRock · Schema
CertificationItem
An individual item within a certification campaign
Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect
Properties
| Name | Type | Description |
|---|---|---|
| _id | string | |
| userId | string | User being reviewed |
| userName | string | |
| entitlementName | string | Entitlement under review |
| applicationName | string | Application the entitlement belongs to |
| decision | string | Current review decision |
| comment | string | |
| reviewer | string | Assigned reviewer |
| reviewDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CertificationItem",
"title": "CertificationItem",
"type": "object",
"description": "An individual item within a certification campaign",
"properties": {
"_id": {
"type": "string"
},
"userId": {
"type": "string",
"description": "User being reviewed"
},
"userName": {
"type": "string"
},
"entitlementName": {
"type": "string",
"description": "Entitlement under review"
},
"applicationName": {
"type": "string",
"description": "Application the entitlement belongs to"
},
"decision": {
"type": "string",
"description": "Current review decision",
"enum": [
"certify",
"revoke",
"exception",
"abstain",
"pending"
]
},
"comment": {
"type": "string"
},
"reviewer": {
"type": "string",
"description": "Assigned reviewer"
},
"reviewDate": {
"type": "string",
"format": "date-time"
}
}
}