Microsoft Graph · Schema

microsoft.graph.workbookTableRow

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphworkbooktablerow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.workbookTableRow",
  "title": "microsoft.graph.workbookTableRow",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "workbookTableRow",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "index": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "The index of the row within the rows collection of the table. Zero-based. Read-only.",
          "format": "int32"
        },
        "values": {
          "description": "The raw values of the specified range. The data returned could be of type string, number, or a Boolean. Any cell that contain an error will return the error string."
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.workbookTableRow"
}