Okta · Schema
JsonWebKey
IdentityWorkforce IdentityCustomer IdentityAuthenticationAuthorizationSingle Sign-OnMulti-Factor AuthenticationIdentity GovernancePrivileged AccessAI AgentsCross-App AccessMCPPlatform
Properties
| Name | Type | Description |
|---|---|---|
| _links | object | |
| alg | string | |
| created | string | |
| e | string | |
| expiresAt | string | |
| key_ops | array | |
| kid | string | |
| kty | string | |
| lastUpdated | string | |
| n | string | |
| status | string | |
| use | string | |
| x5c | array | |
| x5t | string | |
| x5t#S256 | string | |
| x5u | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JsonWebKey",
"title": "JsonWebKey",
"type": "object",
"properties": {
"_links": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {}
},
"readOnly": true
},
"alg": {
"type": "string"
},
"created": {
"type": "string",
"format": "date-time"
},
"e": {
"type": "string"
},
"expiresAt": {
"type": "string",
"format": "date-time"
},
"key_ops": {
"type": "array",
"items": {
"type": "string"
}
},
"kid": {
"type": "string"
},
"kty": {
"type": "string"
},
"lastUpdated": {
"type": "string",
"format": "date-time"
},
"n": {
"type": "string"
},
"status": {
"type": "string"
},
"use": {
"type": "string"
},
"x5c": {
"type": "array",
"items": {
"type": "string"
}
},
"x5t": {
"type": "string"
},
"x5t#S256": {
"type": "string"
},
"x5u": {
"type": "string"
}
},
"x-okta-tags": [
"Application"
]
}