ForgeRock · Schema

Realm

An AM realm configuration

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
name string Realm name
parentPath string Parent realm path
active boolean Whether the realm is active
aliases array DNS aliases for the realm
View JSON Schema on GitHub

JSON Schema

forgerock-realm-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Realm",
  "title": "Realm",
  "type": "object",
  "description": "An AM realm configuration",
  "properties": {
    "name": {
      "type": "string",
      "description": "Realm name"
    },
    "parentPath": {
      "type": "string",
      "description": "Parent realm path"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the realm is active"
    },
    "aliases": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "DNS aliases for the realm"
    }
  }
}