RelationsResult

public struct RelationsResult : Codable, Equatable

The relations between entities found in the content.

  • Confidence score for the relation. Higher values indicate greater confidence.

    Declaration

    Swift

    public var score: Double?
  • The sentence that contains the relation.

    Declaration

    Swift

    public var sentence: String?
  • The type of the relation.

    Declaration

    Swift

    public var type: String?
  • Entity mentions that are involved in the relation.

    Declaration

    Swift

    public var arguments: [RelationArgument]?