Okta · Schema

Okta Group

A group of users in the Okta org, used for app and policy assignment.

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

Properties

Name Type Description
id string
created string
lastUpdated string
lastMembershipUpdated string
objectClass array
type string
profile object
_links object
View JSON Schema on GitHub

JSON Schema

okta-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/okta/main/json-schema/okta-group-schema.json",
  "title": "Okta Group",
  "description": "A group of users in the Okta org, used for app and policy assignment.",
  "type": "object",
  "required": ["id", "type", "profile"],
  "properties": {
    "id": { "type": "string" },
    "created": { "type": "string", "format": "date-time" },
    "lastUpdated": { "type": "string", "format": "date-time" },
    "lastMembershipUpdated": { "type": "string", "format": "date-time" },
    "objectClass": {
      "type": "array",
      "items": { "type": "string" }
    },
    "type": {
      "type": "string",
      "enum": ["OKTA_GROUP", "APP_GROUP", "BUILT_IN"]
    },
    "profile": {
      "type": "object",
      "required": ["name"],
      "properties": {
        "name": { "type": "string" },
        "description": { "type": ["string", "null"] }
      },
      "additionalProperties": true
    },
    "_links": { "type": "object" }
  },
  "additionalProperties": false
}