Tableau · Schema

AddFavoriteRequest

AnalyticsBusiness IntelligenceDashboardsData Visualization

Properties

Name Type Description
favorite object
View JSON Schema on GitHub

JSON Schema

tableau-addfavoriterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddFavoriteRequest",
  "title": "AddFavoriteRequest",
  "type": "object",
  "properties": {
    "favorite": {
      "type": "object",
      "required": [
        "label"
      ],
      "properties": {
        "label": {
          "type": "string",
          "description": "The label for the favorite."
        },
        "workbook": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            }
          }
        },
        "view": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            }
          }
        },
        "datasource": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            }
          }
        },
        "project": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            }
          }
        }
      },
      "example": "example_value"
    }
  }
}