MonitoredEntityLike
An interface type of external business entities that can be monitored.
interface MonitoredEntityLike {
name: String!
address: [Address!]!
countries: [CountryContext!]!
identifiers: [EntityIdentifier!]!
sanctioned: Boolean! @deprecated
sanctionInfo: SanctionInfo!
amsCount: Int! @deprecated
ams(
pageInfo: SizePageInfoInput = { size: 20, offset: 0 }
): [AmsEvent!]!
flags: [FlagKind!]!
riskSignals: RiskSignals!
}Fields
name String! non-null scalar
String!
Entity name.
address [Address!]! non-null object
[Address!]!
The postal address of the Entity.
countries [CountryContext!]! non-null object
[CountryContext!]!
The countries for the Entity.
identifiers [EntityIdentifier!]! non-null object
[EntityIdentifier!]!
The official identifiers for this Entity. Since an Entity can have several ids (even within the same country), this is a list.
sanctioned Boolean! deprecated non-null scalar
DEPRECATED
Use the sanctionInfo field instead
Whether this entity is sanctioned.
sanctionInfo SanctionInfo! non-null object
SanctionInfo!
Sanction information related to this entity.
amsCount Int! deprecated non-null scalar
DEPRECATED
Use the ams field instead
Number of adverse media articles found for this entity. This is an approximation and the actual number may be differ due to clustering of events not performed here.
ams [AmsEvent!]! non-null object
[AmsEvent!]!
Adverse media articles found for this entity.
This field replaces the amsCount field, which will eventually be deprecated.
The amsCount field might differ from the actual number returned here, due to different screening solutions being used.
pageInfo SizePageInfoInput input
SizePageInfoInput
Used for pagination. Media articles are sorted by the highest relevance first.
flags [FlagKind!]! non-null enum
[FlagKind!]!
Flagged events found for this entity.
riskSignals RiskSignals! non-null object
RiskSignals!
Risk signals. Currently there is only one possible risk signal, 'flags', which is created if we find flags of negative severity.
Member Of
AlertConnectionEdge object MonitoringChange object
Implemented By
Company object PrivatePerson object