ForgeRock · Schema

Application

An onboarded application

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
id string
name string
description string
totalEntitlements integer
totalUsers integer
averageConfidenceScore number
View JSON Schema on GitHub

JSON Schema

forgerock-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Application",
  "title": "Application",
  "type": "object",
  "description": "An onboarded application",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "totalEntitlements": {
      "type": "integer"
    },
    "totalUsers": {
      "type": "integer"
    },
    "averageConfidenceScore": {
      "type": "number"
    }
  }
}