Era.Common.DataDefinition.Logs.FlagThreatLog
Description
A data container used to describe the threat to flag.
Properties
Name |
JsonSchemaType |
Description |
CSN |
integer |
The primary identifier of a threat that is to be flagged of a specified frontend product. |
flag |
boolean |
True/False to specify if to flag or unflag a threat. |
frontendThreats_product |
integer |
The product identifier for which to flag a threat with a specified CSN. Can be one of the following: 25769803781 (Antivirus) or 25769803782 (Firewall) |
Dual message (request/response)
No dual message.Referenced in messages
Era.Common.NetworkMessage.ConsoleApi.Logs.RpcFlagThreatRequest
JsonSchema
{
"title": "Era.Common.DataDefinition.Logs.FlagThreatLog",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.DataDefinition.Logs.FlagThreatLog"
],
"properties": {
"Era.Common.DataDefinition.Logs.FlagThreatLog": {
"$ref": "#/definitions/FlagThreatLog"
}
},
"definitions": {
"FlagThreatLog": {
"additionalProperties": false,
"required": [
"CSN",
"flag",
"frontendThreats_product"
],
"type": "object",
"properties": {
"CSN": {
"type": "integer"
},
"flag": {
"type": "boolean"
},
"frontendThreats_product": {
"type": "integer"
}
}
}
}
}