Microsoft Graph · Schema

x509CertificateCRLValidationConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
exemptedCertificateAuthoritiesSubjectKeyIdentifiers array Represents the SKIs of CAs that should be excluded from the valid CRL distribution point check. SKI is represented as a hexadecimal string.
state object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphx509certificatecrlvalidationconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.x509CertificateCRLValidationConfiguration",
  "title": "x509CertificateCRLValidationConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "exemptedCertificateAuthoritiesSubjectKeyIdentifiers": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "Represents the SKIs of CAs that should be excluded from the valid CRL distribution point check. SKI is represented as a hexadecimal string."
    },
    "state": {
      "$ref": "#/components/schemas/microsoft.graph.x509CertificateCRLValidationConfigurationState"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}