# The CreateCleanRoomAssetReviewResponse object

## Attributes

- `notebook_reviews` (array of object, Beta)
  All existing notebook approvals or rejections
  - `reviewer_collaborator_alias` (string)
    Collaborator alias of the reviewer
  - `created_at_millis` (int64)
    When the review was submitted, in epoch milliseconds
  - `review_state` (string)
    Review outcome
    Possible values: `NOTEBOOK_REVIEW_STATE_UNSPECIFIED`, `APPROVED`, `REJECTED`, `PENDING`
  - `comment` (string)
    Review comment
    Example: `Code looks wrong`
    Constraints: `<= 500 characters`
  - `review_sub_reason` (string)
    Specified when the review was not explicitly made by a user
    Possible values: `NOTEBOOK_REVIEW_SUB_REASON_UNSPECIFIED`, `BACKFILLED`, `AUTO_APPROVED`
- `jar_analysis_reviews` (array of object, Beta)
  All existing jar analysis approvals or rejections
  - `reviewer_collaborator_alias` (string, Public Preview)
    collaborator alias of the reviewer
  - `created_at_millis` (int64, Public Preview)
    timestamp of when the review was submitted
  - `review_state` (string, Public Preview)
    review outcome
    Possible values: `JAR_ANALYSIS_REVIEW_STATE_UNSPECIFIED`, `APPROVED`, `REJECTED`, `PENDING`
  - `comment` (string, Public Preview)
    review comment
    Example: `Not ready to run yet`
    Constraints: `<= 500 characters`
  - `review_sub_reason` (string, Public Preview)
    specified when the review was not explicitly made by a user
    Possible values: `JAR_ANALYSIS_REVIEW_SUB_REASON_UNSPECIFIED`, `AUTO_APPROVED`
- `notebook_review_state` (string, Beta)
  Top-level status derived from all reviews
  Possible values: `NOTEBOOK_REVIEW_STATE_UNSPECIFIED`, `APPROVED`, `REJECTED`, `PENDING`
- `jar_analysis_review_state` (string, Beta)
  top-level status derived from all reviews
  Possible values: `JAR_ANALYSIS_REVIEW_STATE_UNSPECIFIED`, `APPROVED`, `REJECTED`, `PENDING`

## Example

```json
{
  "notebook_reviews": [
    {
      "reviewer_collaborator_alias": "string",
      "created_at_millis": 0,
      "review_state": "string",
      "comment": "Code looks wrong",
      "review_sub_reason": "string"
    }
  ],
  "jar_analysis_reviews": [
    {
      "reviewer_collaborator_alias": "string",
      "created_at_millis": 0,
      "review_state": "string",
      "comment": "Not ready to run yet",
      "review_sub_reason": "string"
    }
  ],
  "notebook_review_state": "string",
  "jar_analysis_review_state": "string"
}
```


