Microsoft Graph · Schema
microsoft.graph.deviceManagementExportJob
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.deviceManagementExportJob",
"title": "microsoft.graph.deviceManagementExportJob",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "deviceManagementExportJob",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"expirationDateTime": {
"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": "Time that the exported report expires.",
"format": "date-time"
},
"filter": {
"type": "string",
"description": "Filters applied on the report. The maximum length allowed for this property is 2000 characters.",
"nullable": true
},
"format": {
"$ref": "#/components/schemas/microsoft.graph.deviceManagementReportFileFormat"
},
"localizationType": {
"$ref": "#/components/schemas/microsoft.graph.deviceManagementExportJobLocalizationType"
},
"reportName": {
"type": "string",
"description": "Name of the report. The maximum length allowed for this property is 2000 characters."
},
"requestDateTime": {
"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": "Time that the exported report was requested.",
"format": "date-time"
},
"select": {
"type": "array",
"items": {
"type": "string",
"nullable": true
},
"description": "Columns selected from the report. The maximum number of allowed columns names is 256. The maximum length allowed for each column name in this property is 1000 characters."
},
"snapshotId": {
"type": "string",
"description": "A snapshot is an identifiable subset of the dataset represented by the ReportName. A sessionId or CachedReportConfiguration id can be used here. If a sessionId is specified, Filter, Select, and OrderBy are applied to the data represented by the sessionId. Filter, Select, and OrderBy cannot be specified together with a CachedReportConfiguration id. The maximum length allowed for this property is 128 characters.",
"nullable": true
},
"status": {
"$ref": "#/components/schemas/microsoft.graph.deviceManagementReportStatus"
},
"url": {
"type": "string",
"description": "Temporary location of the exported report.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
},
"description": "Entity representing a job to export a report."
}
],
"x-ms-discriminator-value": "#microsoft.graph.deviceManagementExportJob"
}