Okta group

Matches an Okta group. Requires an Okta identity provider.

APIs.ioEngineeringPlatform

Properties

Name Type Description
okta object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-okta-group-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/access_okta_group_rule",
  "title": "Okta group",
  "description": "Matches an Okta group.\nRequires an Okta identity provider.",
  "properties": {
    "okta": {
      "properties": {
        "identity_provider_id": {
          "description": "The ID of your Okta identity provider.",
          "example": "ea85612a-29c8-46c2-bacb-669d65136971",
          "type": "string"
        },
        "name": {
          "description": "The name of the Okta group.",
          "example": "devs",
          "type": "string"
        }
      },
      "required": [
        "name",
        "identity_provider_id"
      ],
      "type": "object"
    }
  },
  "required": [
    "okta"
  ],
  "type": "object"
}