Microsoft Graph · Schema

defaultColumnValue

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
formula string The formula used to compute the default value for the column.
value string The direct value to use as the default value for the column.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdefaultcolumnvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.defaultColumnValue",
  "title": "defaultColumnValue",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "formula": {
      "type": "string",
      "description": "The formula used to compute the default value for the column.",
      "nullable": true
    },
    "value": {
      "type": "string",
      "description": "The direct value to use as the default value for the column.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}