Microsoft Graph · Schema

teamSummary

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
guestsCount number Count of guests in a team.
membersCount number Count of members in a team.
ownersCount number Count of owners in a team.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphteamsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.teamSummary",
  "title": "teamSummary",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "guestsCount": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Count of guests in a team.",
      "format": "int32",
      "nullable": true
    },
    "membersCount": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Count of members in a team.",
      "format": "int32",
      "nullable": true
    },
    "ownersCount": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "Count of owners in a team.",
      "format": "int32",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}