ForgeRock · Schema

ManagedObject

A managed identity object

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
_id string Unique identifier
_rev string Object revision for concurrency control
View JSON Schema on GitHub

JSON Schema

forgerock-managedobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedObject",
  "title": "ManagedObject",
  "type": "object",
  "description": "A managed identity object",
  "properties": {
    "_id": {
      "type": "string",
      "description": "Unique identifier",
      "readOnly": true
    },
    "_rev": {
      "type": "string",
      "description": "Object revision for concurrency control",
      "readOnly": true
    }
  },
  "additionalProperties": true
}