Microsoft Graph · Schema

requestSignatureVerification

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
allowedWeakAlgorithms object Specifies which weak algorithms are allowed. The possible values are: rsaSha1, unknownFutureValue.
isSignedRequestRequired boolean Specifies whether signed authentication requests for this application should be required.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrequestsignatureverification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.requestSignatureVerification",
  "title": "requestSignatureVerification",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "allowedWeakAlgorithms": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.weakAlgorithms"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Specifies which weak algorithms are allowed.  The possible values are: rsaSha1, unknownFutureValue."
    },
    "isSignedRequestRequired": {
      "type": "boolean",
      "description": "Specifies whether signed authentication requests for this application should be required."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}