Microsoft Graph · Schema

edgeCookiePolicy

Possible values to specify which cookies are allowed in Microsoft Edge.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphedgecookiepolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.edgeCookiePolicy",
  "title": "edgeCookiePolicy",
  "enum": [
    "userDefined",
    "allow",
    "blockThirdParty",
    "blockAll"
  ],
  "type": "string",
  "description": "Possible values to specify which cookies are allowed in Microsoft Edge.",
  "x-ms-enum": {
    "name": "edgeCookiePolicy",
    "modelAsString": false,
    "values": [
      {
        "value": "userDefined",
        "description": "Allow the user to set.",
        "name": "userDefined"
      },
      {
        "value": "allow",
        "description": "Allow.",
        "name": "allow"
      },
      {
        "value": "blockThirdParty",
        "description": "Block only third party cookies.",
        "name": "blockThirdParty"
      },
      {
        "value": "blockAll",
        "description": "Block all cookies.",
        "name": "blockAll"
      }
    ]
  }
}