ForgeRock · Schema

ResourceType

A resource type definition

Access ManagementAuthenticationAuthorizationIdentity GovernanceIdentity ManagementOAuthOpenID Connect

Properties

Name Type Description
uuid string
name string
description string
patterns array URL patterns for this resource type
actions object Available actions and their default values
View JSON Schema on GitHub

JSON Schema

forgerock-resourcetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceType",
  "title": "ResourceType",
  "type": "object",
  "description": "A resource type definition",
  "properties": {
    "uuid": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "patterns": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "URL patterns for this resource type"
    },
    "actions": {
      "type": "object",
      "description": "Available actions and their default values",
      "additionalProperties": {
        "type": "boolean"
      }
    }
  }
}