OBJECT

FindingReport

Report metadata.

link GraphQL Schema definition

  • type FindingReport implements Node, NodeVersion {
  • # A custom message to associate with the report.
  • comment: String
  • # Timestamp for the creation of the Report.
  • createdTime: DateTime!
  • # The time when the report will be automatically deleted.
  • expires: DateTime
  • # Node-compatible opaque global identifier
  • id: ID!
  • # The last time this Report was successfully updated.
  • lastUpdatedTime: DateTime!
  • # Opaque version string for this graph node instance
  • nodeVersion: ID!
  • # The User details of the user owning this Report Configuration.
  • owner: User
  • # Report Configuration.
  • reportConfiguration: FindingReportConfiguration
  • # Node-compatible opaque global identifier
  • reportId: String!
  • # The size of report in bytes.
  • size: Int
  • # Report Status holds details about the report generation.
  • status: FindingReportStatus
  • }