Microsoft Graph · Schema
microsoft.graph.deviceLocalCredentialInfo
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.deviceLocalCredentialInfo",
"title": "microsoft.graph.deviceLocalCredentialInfo",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "deviceLocalCredentialInfo",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"credentials": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.deviceLocalCredential"
},
"description": "The credentials of the device's local administrator account backed up to Azure Active Directory."
},
"deviceName": {
"type": "string",
"description": "Display name of the device that the local credentials are associated with."
},
"lastBackupDateTime": {
"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": "When the local administrator account credential was backed up to Azure Active Directory.",
"format": "date-time"
},
"refreshDateTime": {
"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": "When the local administrator account credential will be refreshed and backed up to Azure Active Directory.",
"format": "date-time"
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.deviceLocalCredentialInfo"
}