json.schema.security.client.customOidcSSOClientConfig.json Maven / Gradle / Ivy
{
"$id": "https://open-metadata.org/schema/security/client/customOidcSSOClientConfig.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CustomOIDCSSOClientConfig",
"description": "Custom OIDC SSO client security configs.",
"type": "object",
"javaType": "org.openmetadata.schema.security.client.CustomOIDCSSOClientConfig",
"properties": {
"clientId": {
"description": "Custom OIDC Client ID.",
"type": "string"
},
"secretKey": {
"description": "Custom OIDC Client Secret Key.",
"type": "string",
"format": "password"
},
"tokenEndpoint": {
"description": "Custom OIDC token endpoint.",
"type": "string"
}
},
"additionalProperties": false,
"required": ["clientId", "secretKey", "tokenEndpoint"]
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy