Okta · Schema

Feature

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

Properties

Name Type Description
_links object
description string
id string
name string
stage object
status object
type object
View JSON Schema on GitHub

JSON Schema

okta-feature-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Feature",
  "title": "Feature",
  "type": "object",
  "properties": {
    "_links": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {}
      },
      "readOnly": true
    },
    "description": {
      "type": "string"
    },
    "id": {
      "type": "string",
      "readOnly": true
    },
    "name": {
      "type": "string"
    },
    "stage": {
      "$ref": "#/components/schemas/FeatureStage"
    },
    "status": {
      "$ref": "#/components/schemas/EnabledStatus"
    },
    "type": {
      "$ref": "#/components/schemas/FeatureType"
    }
  },
  "x-okta-crud": [
    {
      "alias": "read",
      "arguments": [],
      "operationId": "getFeature"
    }
  ],
  "x-okta-operations": [
    {
      "alias": "updateLifecycle",
      "arguments": [
        {
          "dest": "featureId",
          "src": "id"
        }
      ],
      "operationId": "updateFeatureLifecycle"
    },
    {
      "alias": "getDependents",
      "arguments": [
        {
          "dest": "featureId",
          "src": "id"
        }
      ],
      "operationId": "listFeatureDependents"
    },
    {
      "alias": "getDependencies",
      "arguments": [
        {
          "dest": "featureId",
          "src": "id"
        }
      ],
      "operationId": "listFeatureDependencies"
    }
  ],
  "x-okta-tags": [
    "Feature"
  ]
}