AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
Name
Type
Description
name
string
Friendly name of this profile.
subject_token_type
string
Subject token type for this profile. When receiving a token exchange request on the Authentication API, the corresponding token exchange profile with a matching subject_token_type will be executed. Th
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateTokenExchangeProfileRequestContent",
"title": "UpdateTokenExchangeProfileRequestContent",
"type": "object",
"additionalProperties": false,
"minProperties": 1,
"properties": {
"name": {
"type": "string",
"description": "Friendly name of this profile.",
"default": "Token Exchange Profile 1",
"minLength": 3,
"maxLength": 50
},
"subject_token_type": {
"type": "string",
"description": "Subject token type for this profile. When receiving a token exchange request on the Authentication API, the corresponding token exchange profile with a matching subject_token_type will be executed. This must be a URI.",
"minLength": 8,
"maxLength": 100,
"format": "url"
}
}
}