Tableau · Schema

SignInResponse

AnalyticsBusiness IntelligenceDashboardsData Visualization

Properties

Name Type Description
credentials object
View JSON Schema on GitHub

JSON Schema

tableau-signinresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SignInResponse",
  "title": "SignInResponse",
  "type": "object",
  "properties": {
    "credentials": {
      "type": "object",
      "properties": {
        "token": {
          "type": "string",
          "description": "The authentication token to use in subsequent API calls."
        },
        "site": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string",
              "description": "The ID of the site."
            },
            "contentUrl": {
              "type": "string",
              "description": "The URL namespace of the site."
            }
          }
        },
        "user": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string",
              "description": "The ID of the authenticated user."
            }
          }
        }
      },
      "example": "example_value"
    }
  }
}