Tableau · Schema

View

AnalyticsBusiness IntelligenceDashboardsData Visualization

Properties

Name Type Description
id string The unique identifier for the view.
name string The name of the view.
contentUrl string The URL name of the view.
createdAt string The date and time the view was created.
updatedAt string The date and time the view was last updated.
viewUrlName string The URL-friendly name of the view used in the content URL.
sheetType string The type of sheet (worksheet, dashboard, or story).
project object
owner object
workbook object
tags object
usage object
View JSON Schema on GitHub

JSON Schema

tableau-view-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/View",
  "title": "View",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for the view.",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "description": "The name of the view.",
      "example": "Example Title"
    },
    "contentUrl": {
      "type": "string",
      "description": "The URL name of the view.",
      "example": "https://www.example.com"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the view was created.",
      "example": "2026-01-15T10:30:00Z"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time the view was last updated.",
      "example": "2026-01-15T10:30:00Z"
    },
    "viewUrlName": {
      "type": "string",
      "description": "The URL-friendly name of the view used in the content URL.",
      "example": "https://www.example.com"
    },
    "sheetType": {
      "type": "string",
      "enum": [
        "worksheet",
        "dashboard",
        "story"
      ],
      "description": "The type of sheet (worksheet, dashboard, or story).",
      "example": "worksheet"
    },
    "project": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The ID of the containing project."
        },
        "name": {
          "type": "string",
          "description": "The name of the containing project."
        }
      },
      "example": "example_value"
    },
    "owner": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The ID of the view owner."
        },
        "name": {
          "type": "string",
          "description": "The name of the view owner."
        }
      },
      "example": "example_value"
    },
    "workbook": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "The ID of the containing workbook."
        },
        "name": {
          "type": "string",
          "description": "The name of the containing workbook."
        }
      },
      "example": "example_value"
    },
    "tags": {
      "type": "object",
      "properties": {
        "tag": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/Tag"
          }
        }
      },
      "example": "example_value"
    },
    "usage": {
      "type": "object",
      "properties": {
        "totalViewCount": {
          "type": "integer",
          "description": "The total number of times the view has been accessed."
        }
      },
      "example": "example_value"
    }
  }
}