ForgeRock · Schema

ConfigObject

A live configuration object in the IG runtime

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
_id string
type string Object type (Router, Handler, Filter, etc.)
name string
config object Object configuration
View JSON Schema on GitHub

JSON Schema

forgerock-configobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConfigObject",
  "title": "ConfigObject",
  "type": "object",
  "description": "A live configuration object in the IG runtime",
  "properties": {
    "_id": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "description": "Object type (Router, Handler, Filter, etc.)"
    },
    "name": {
      "type": "string"
    },
    "config": {
      "type": "object",
      "description": "Object configuration"
    }
  }
}