Frontegg · Schema

AuditRequest

JSON Schema for Frontegg audits AuditRequest entity, derived from the published OpenAPI specification.

AuthenticationAuthorizationIdentity ManagementCIAMB2B SaaSMulti-TenancyRBACSSOSCIMEntitlementsOAuthOpenID Connect

Properties

Name Type Description
severity string
View JSON Schema on GitHub

JSON Schema

frontegg-audits-auditrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/frontegg/main/json-schema/frontegg-audits-auditrequest-schema.json",
  "title": "AuditRequest",
  "description": "JSON Schema for Frontegg audits AuditRequest entity, derived from the published OpenAPI specification.",
  "type": "object",
  "properties": {
    "severity": {
      "type": "string",
      "enum": [
        "Info",
        "Medium",
        "High",
        "Critical",
        "Error"
      ],
      "description": ""
    }
  },
  "required": [
    "severity"
  ]
}