Microsoft Graph · Schema
microsoft.graph.bitlockerRecoveryKey
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.bitlockerRecoveryKey",
"title": "microsoft.graph.bitlockerRecoveryKey",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "bitlockerRecoveryKey",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"createdDateTime": {
"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": "The date and time when the key was originally backed up to Microsoft Entra ID. Not nullable.",
"format": "date-time"
},
"deviceId": {
"type": "string",
"description": "Identifier of the device the BitLocker key is originally backed up from. Supports $filter (eq).",
"nullable": true
},
"key": {
"type": "string",
"description": "The BitLocker recovery key. Returned only on $select. Not nullable."
},
"volumeType": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.volumeType"
},
{
"type": "object",
"nullable": true
}
],
"description": "Indicates the type of volume the BitLocker key is associated with. The possible values are: 1 (for operatingSystemVolume), 2 (for fixedDataVolume), 3 (for removableDataVolume), and 4 (for unknownFutureValue)."
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.bitlockerRecoveryKey"
}