Microsoft Graph · Schema
microsoft.graph.security.networkConnectionEvidence
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.security.networkConnectionEvidence",
"title": "microsoft.graph.security.networkConnectionEvidence",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.security.alertEvidence"
},
{
"title": "networkConnectionEvidence",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"destinationAddress": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.security.ipEvidence"
},
{
"type": "object",
"nullable": true
}
]
},
"destinationPort": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"format": "int32",
"nullable": true
},
"protocol": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.security.protocolType"
},
{
"type": "object",
"nullable": true
}
]
},
"sourceAddress": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.security.ipEvidence"
},
{
"type": "object",
"nullable": true
}
]
},
"sourcePort": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"format": "int32",
"nullable": true
},
"@odata.type": {
"type": "string",
"default": "#microsoft.graph.security.networkConnectionEvidence"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.security.networkConnectionEvidence"
}