OBJECT

ClassificationPreview

Description

Represents the preview of classified data content.

link GraphQL Schema definition

  • type ClassificationPreview {
  • # Represents the analyzer ID that performed the classification.
  • analyzerId: String!
  • # Represents the end index of the classified text content.
  • endIdx: Int!
  • # Represents the list of policy IDs that detected this classification.
  • policyIds: [String!]!
  • # Represents the start index of the classified text content.
  • startIdx: Int!
  • # Represents the classified data content.
  • text: String!
  • }