Microsoft Graph · Schema

microsoft.graph.workbookTableColumn

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphworkbooktablecolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.workbookTableColumn",
  "title": "microsoft.graph.workbookTableColumn",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "workbookTableColumn",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "index": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "The index of the column within the columns collection of the table. Zero-indexed. Read-only.",
          "format": "int32"
        },
        "name": {
          "type": "string",
          "description": "The name of the table column.",
          "nullable": true
        },
        "values": {
          "description": "TRepresents the raw values of the specified range. The data returned could be of type string, number, or a Boolean. Cell that contain an error will return the error string."
        },
        "filter": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.workbookFilter"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The filter applied to the column. Read-only.",
          "x-ms-navigationProperty": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.workbookTableColumn"
}