Show / Hide Table of Contents

Class DataAttribution

The confidence, source information, and visibility for a particular sighting or observation of some data associated with a threat indicator. This associated data can be the indicator's threat type, attribute, or relationship.

Inheritance
object
DataAttribution
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ThreatintelligenceService.Models
Assembly: OCI.DotNetSDK.Threatintelligence.dll
Syntax
public class DataAttribution

Properties

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public int? Confidence { get; set; }
Property Value
Type Description
int?

An integer from 0 to 100 that provides a measure of our certainty in the maliciousness of data attributed to an indicator. For example, if the source of the data being attributed is the Tor Project, our confidence that the associated indicator is a tor exit node would be 100.

Remarks

Required

Source

Declaration
[Required(ErrorMessage = "Source is required.")]
[JsonProperty(PropertyName = "source")]
public IndicatorSourceSummary Source { get; set; }
Property Value
Type Description
IndicatorSourceSummary
Remarks

Required

TimeFirstSeen

Declaration
[JsonProperty(PropertyName = "timeFirstSeen")]
public DateTime? TimeFirstSeen { get; set; }
Property Value
Type Description
DateTime?

The date and time the attribution data was first seen for this entity. If the data source does not provide this information, it is set to the last time it was seen. An RFC3339 formatted string.

TimeLastSeen

Declaration
[Required(ErrorMessage = "TimeLastSeen is required.")]
[JsonProperty(PropertyName = "timeLastSeen")]
public DateTime? TimeLastSeen { get; set; }
Property Value
Type Description
DateTime?

The last date and time the attribution data was seen for this entity. An RFC3339 formatted string.

Remarks

Required

Visibility

Declaration
[Required(ErrorMessage = "Visibility is required.")]
[JsonProperty(PropertyName = "visibility")]
public DataVisibility Visibility { get; set; }
Property Value
Type Description
DataVisibility
Remarks

Required

In this article
Back to top