Microsoft Graph · Schema

keyCredentialConfiguration

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
maxLifetime string String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This prope
restrictForAppsCreatedAfterDateTime string Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied.
restrictionType object The type of restriction being applied. Possible values are asymmetricKeyLifetime, and unknownFutureValue. Each value of restrictionType can be used only once per policy.
state object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphkeycredentialconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.keyCredentialConfiguration",
  "title": "keyCredentialConfiguration",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "maxLifetime": {
      "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$",
      "type": "string",
      "description": "String value that indicates the maximum lifetime for key expiration, defined as an ISO 8601 duration. For example, P4DT12H30M5S represents four days, 12 hours, 30 minutes, and five seconds. This property is required when restrictionType is set to keyLifetime.",
      "format": "duration",
      "nullable": true
    },
    "restrictForAppsCreatedAfterDateTime": {
      "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
      "type": "string",
      "description": "Specifies the date from which the policy restriction applies to newly created applications. For existing applications, the enforcement date can be retroactively applied.",
      "format": "date-time",
      "nullable": true
    },
    "restrictionType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.appKeyCredentialRestrictionType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The type of restriction being applied. Possible values are asymmetricKeyLifetime, and unknownFutureValue. Each value of restrictionType can be used only once per policy."
    },
    "state": {
      "$ref": "#/components/schemas/microsoft.graph.appManagementRestrictionState"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}