All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.security.client.azureSSOClientConfig.json Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
{
  "$id": "https://open-metadata.org/schema/security/client/azureSSOClientConfig.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AzureSSOClientConfig",
  "description": "Azure SSO Client security config to connect to OpenMetadata.",
  "type": "object",
  "javaType": "org.openmetadata.schema.security.client.AzureSSOClientConfig",
  "properties": {
    "clientSecret": {
      "description": "Azure SSO client secret key",
      "type": "string",
      "format": "password"
    },
    "authority": {
      "description": "Azure SSO Authority",
      "type": "string"
    },
    "clientId": {
      "description": "Azure Client ID.",
      "type": "string"
    },
    "scopes": {
      "description": "Azure Client ID.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "additionalProperties": false,
  "required": ["clientSecret", "clientId", "authority", "scopes"]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy