Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the review. |
| state | string | The review state. |
| body | string | The review comment body. |
| actor | object | The user who submitted the review. |
| created_at | string | The timestamp when the review was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DeployRequestReview",
"title": "DeployRequestReview",
"type": "object",
"description": "A review submitted for a deploy request.",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the review."
},
"state": {
"type": "string",
"description": "The review state.",
"enum": [
"approved",
"changes_requested",
"commented"
]
},
"body": {
"type": "string",
"description": "The review comment body."
},
"actor": {
"type": "object",
"description": "The user who submitted the review.",
"properties": {
"id": {
"type": "string",
"description": "The user ID."
},
"display_name": {
"type": "string",
"description": "The display name of the user."
}
}
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The timestamp when the review was created."
}
}
}