OBJECT

PolicyDetail

Description

Represents the policy detail.

link GraphQL Schema definition

  • type PolicyDetail {
  • # Policy ID.
  • id: String!
  • # Policy name.
  • name: String!
  • # Policy description.
  • description: String!
  • # Total objects in a policy.
  • totalObjects: Int!
  • # Objects with pending initial analysis.
  • pendingAnalysisObjects: Int!
  • # Total analyzers in a policy.
  • analyzers: Int!
  • # Time when the policy was last updated.
  • lastUpdatedTime: Long!
  • # Total sensitive hits in a policy.
  • totalHits: Long!
  • # List of datatype IDs in a policy.
  • dataTypeIds: [String!]!
  • # Percentage of objects covered.
  • objectsPercentCoverage: Int! @deprecated( reason: "Deprecated. Use percentCoverage instead." )
  • # The percentage of coverage for a data category.
  • percentCoverage: Float!
  • # Policy creator.
  • creator: User
  • }