Okta · Schema

OAuth2Scope

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

Properties

Name Type Description
consent string
default boolean
description string
displayName string
id string
metadataPublish string
name string
system boolean
View JSON Schema on GitHub

JSON Schema

okta-oauth2scope-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OAuth2Scope",
  "title": "OAuth2Scope",
  "type": "object",
  "properties": {
    "consent": {
      "type": "string",
      "enum": [
        "REQUIRED",
        "IMPLICIT",
        "ADMIN"
      ]
    },
    "default": {
      "type": "boolean"
    },
    "description": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "id": {
      "type": "string",
      "readOnly": true
    },
    "metadataPublish": {
      "type": "string",
      "enum": [
        "ALL_CLIENTS",
        "NO_CLIENTS"
      ]
    },
    "name": {
      "type": "string"
    },
    "system": {
      "type": "boolean"
    }
  },
  "x-okta-tags": [
    "Application"
  ]
}