Okta · Schema

PasswordCredentialHash

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

Properties

Name Type Description
algorithm object
salt string
saltOrder string
value string
workFactor integer
View JSON Schema on GitHub

JSON Schema

okta-passwordcredentialhash-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PasswordCredentialHash",
  "title": "PasswordCredentialHash",
  "type": "object",
  "properties": {
    "algorithm": {
      "$ref": "#/components/schemas/PasswordCredentialHashAlgorithm"
    },
    "salt": {
      "type": "string"
    },
    "saltOrder": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "workFactor": {
      "type": "integer"
    }
  },
  "x-okta-tags": [
    "User"
  ]
}