Frontegg · Schema

PermissionResponse

JSON Schema for Frontegg identity PermissionResponse entity, derived from the published OpenAPI specification.

AuthenticationAuthorizationIdentity ManagementCIAMB2B SaaSMulti-TenancyRBACSSOSCIMEntitlementsOAuthOpenID Connect

Properties

Name Type Description
id string
key string
name string
description string
createdAt string
updatedAt string
roleIds array
categoryId string
fePermission boolean
View JSON Schema on GitHub

JSON Schema

frontegg-identity-permissionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/frontegg/main/json-schema/frontegg-identity-permissionresponse-schema.json",
  "title": "PermissionResponse",
  "description": "JSON Schema for Frontegg identity PermissionResponse entity, derived from the published OpenAPI specification.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "key": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "createdAt": {
      "format": "date-time",
      "type": "string"
    },
    "updatedAt": {
      "format": "date-time",
      "type": "string"
    },
    "roleIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "categoryId": {
      "type": "string"
    },
    "fePermission": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "key",
    "name",
    "description",
    "createdAt",
    "updatedAt",
    "roleIds",
    "categoryId",
    "fePermission"
  ]
}