Aserto · Schema

v2IdentityType

Identity types, describes the payload type of the identity field inside the IdentityContext message. - IDENTITY_TYPE_UNKNOWN: Unknown, value not set, requests will fail with identity type not set error. - IDENTITY_TYPE_NONE: None, no explicit identity context set, equals anonymous. - IDENTITY_TYPE_SUB: Sub(ject), identity field contains an oAUTH subject. - IDENTITY_TYPE_JWT: JWT, identity field contains a JWT access token.

AuthorizationFine-Grained Access ControlRBACABACReBACPolicyOpen Policy AgentOPACloud-NativeSecurity
View JSON Schema on GitHub

JSON Schema

aserto-decision-logs-v2identitytype.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "v2IdentityType",
  "description": "Identity types, describes the payload type of the identity field inside the IdentityContext message.\n\n - IDENTITY_TYPE_UNKNOWN: Unknown, value not set, requests will fail with identity type not set error.\n - IDENTITY_TYPE_NONE: None, no explicit identity context set, equals anonymous.\n - IDENTITY_TYPE_SUB: Sub(ject), identity field contains an oAUTH subject.\n - IDENTITY_TYPE_JWT: JWT, identity field contains a JWT access token.",
  "default": "IDENTITY_TYPE_UNKNOWN",
  "enum": [
    "IDENTITY_TYPE_UNKNOWN",
    "IDENTITY_TYPE_NONE",
    "IDENTITY_TYPE_SUB",
    "IDENTITY_TYPE_JWT"
  ],
  "type": "string"
}