Okta · Schema

OktaSignOnPolicyRuleSignonActions

IdentityWorkforce IdentityCustomer IdentityAuthenticationAuthorizationSingle Sign-OnMulti-Factor AuthenticationIdentity GovernancePrivileged AccessAI AgentsCross-App AccessMCPPlatform

Properties

Name Type Description
access string
factorLifetime integer
factorPromptMode string
rememberDeviceByDefault boolean
requireFactor boolean
session object
View JSON Schema on GitHub

JSON Schema

okta-oktasignonpolicyrulesignonactions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OktaSignOnPolicyRuleSignonActions",
  "title": "OktaSignOnPolicyRuleSignonActions",
  "type": "object",
  "properties": {
    "access": {
      "type": "string",
      "enum": [
        "ALLOW",
        "DENY"
      ]
    },
    "factorLifetime": {
      "type": "integer"
    },
    "factorPromptMode": {
      "type": "string",
      "enum": [
        "ALWAYS",
        "DEVICE",
        "SESSION"
      ]
    },
    "rememberDeviceByDefault": {
      "type": "boolean",
      "default": false
    },
    "requireFactor": {
      "type": "boolean",
      "default": false
    },
    "session": {
      "$ref": "#/components/schemas/OktaSignOnPolicyRuleSignonSessionActions"
    }
  },
  "x-okta-tags": [
    "Policy"
  ]
}