Tableau · Schema

AddUserRequest

AnalyticsBusiness IntelligenceDashboardsData Visualization

Properties

Name Type Description
user object
View JSON Schema on GitHub

JSON Schema

tableau-adduserrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddUserRequest",
  "title": "AddUserRequest",
  "type": "object",
  "properties": {
    "user": {
      "type": "object",
      "required": [
        "name",
        "siteRole"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "The name of the user to add."
        },
        "siteRole": {
          "type": "string",
          "enum": [
            "Creator",
            "Explorer",
            "ExplorerCanPublish",
            "SiteAdministratorCreator",
            "SiteAdministratorExplorer",
            "Unlicensed",
            "Viewer"
          ]
        },
        "authSetting": {
          "type": "string",
          "description": "The authentication type for the user."
        }
      },
      "example": "example_value"
    }
  }
}