Microsoft Graph · Schema

teamFunSettings

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
allowCustomMemes boolean If set to true, enables users to include custom memes.
allowGiphy boolean If set to true, enables Giphy use.
allowStickersAndMemes boolean If set to true, enables users to include stickers and memes.
giphyContentRating object Giphy content rating. The possible values are: moderate, strict.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphteamfunsettings-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.teamFunSettings",
  "title": "teamFunSettings",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "allowCustomMemes": {
      "type": "boolean",
      "description": "If set to true, enables users to include custom memes.",
      "nullable": true
    },
    "allowGiphy": {
      "type": "boolean",
      "description": "If set to true, enables Giphy use.",
      "nullable": true
    },
    "allowStickersAndMemes": {
      "type": "boolean",
      "description": "If set to true, enables users to include stickers and memes.",
      "nullable": true
    },
    "giphyContentRating": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.giphyRatingType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Giphy content rating. The possible values are: moderate, strict."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}