Microsoft Graph · Schema
securityVendorInformation
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| provider | string | Specific provider (product/service - not vendor company); for example, WindowsDefenderATP. |
| providerVersion | string | Version of the provider or subprovider, if it exists, that generated the alert. Required |
| subProvider | string | Specific subprovider (under aggregating provider); for example, WindowsDefenderATP.SmartScreen. |
| vendor | string | Name of the alert vendor (for example, Microsoft, Dell, FireEye). Required |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.securityVendorInformation",
"title": "securityVendorInformation",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"provider": {
"type": "string",
"description": "Specific provider (product/service - not vendor company); for example, WindowsDefenderATP.",
"nullable": true
},
"providerVersion": {
"type": "string",
"description": "Version of the provider or subprovider, if it exists, that generated the alert. Required",
"nullable": true
},
"subProvider": {
"type": "string",
"description": "Specific subprovider (under aggregating provider); for example, WindowsDefenderATP.SmartScreen.",
"nullable": true
},
"vendor": {
"type": "string",
"description": "Name of the alert vendor (for example, Microsoft, Dell, FireEye). Required",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}