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