Microsoft Graph · Schema

workforceIntegrationEncryption

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
protocol object The possible values are: sharedSecret, unknownFutureValue.
secret string Encryption shared secret.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphworkforceintegrationencryption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.workforceIntegrationEncryption",
  "title": "workforceIntegrationEncryption",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "protocol": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.workforceIntegrationEncryptionProtocol"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The possible values are: sharedSecret, unknownFutureValue."
    },
    "secret": {
      "type": "string",
      "description": "Encryption shared secret.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}