Strise Connect API Docs
TypesObjects

Review

No description

type Review {
  id: ID!
  pdf: Base64EncodedFile
  createdAt: DateTime!
  companyId: CompanyId!
  calculatedRiskLevel: RiskLevelKind
  userAssessedRiskLevel: RiskLevelKind
  selfAssessment: String
  validUntilDate: DateTime
  entityStatus: EntityPortfolioStatus
}

Fields

id ID! non-null scalar

ID! The id of the review.

pdf Base64EncodedFile scalar

Base64EncodedFile The review as a base64 encoded PDF. The PDF is generated asynchronously, if it has not been created yet this field will be 'null'.

createdAt DateTime! non-null scalar

DateTime! The review's creation timestamp

companyId CompanyId! non-null scalar

CompanyId! The ID of the company on which the review was created.

calculatedRiskLevel RiskLevelKind enum

RiskLevelKind Calculated risk level at the time of the review. Based on team settings.

userAssessedRiskLevel RiskLevelKind enum

RiskLevelKind User-assessed risk level set during the review process.

selfAssessment String scalar

String Self assessment set during the review process.

validUntilDate DateTime scalar

DateTime Date until which the review is valid

entityStatus EntityPortfolioStatus enum

EntityPortfolioStatus The entity status at the time of the review.

Returned By

review query reviews query

Member Of

Company object

On this page