Tableau · Schema

UpdateSiteRequest

AnalyticsBusiness IntelligenceDashboardsData Visualization

Properties

Name Type Description
site object
View JSON Schema on GitHub

JSON Schema

tableau-updatesiterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateSiteRequest",
  "title": "UpdateSiteRequest",
  "type": "object",
  "properties": {
    "site": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "contentUrl": {
          "type": "string"
        },
        "adminMode": {
          "type": "string",
          "enum": [
            "ContentAndUsers",
            "ContentOnly"
          ]
        },
        "state": {
          "type": "string",
          "enum": [
            "Active",
            "Suspended"
          ]
        },
        "storageQuota": {
          "type": "integer"
        },
        "userQuota": {
          "type": "integer"
        },
        "disableSubscriptions": {
          "type": "boolean"
        },
        "revision": {
          "type": "string"
        }
      },
      "example": "example_value"
    }
  }
}