Properties
| Name | Type | Description |
|---|---|---|
| closed_at | string | |
| commit_ids | object | |
| created_at | string | |
| id | string | |
| labels | object | |
| raw | object | |
| repo_id | string | |
| status | string | |
| updated_at | string | |
| user_ids | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RepoPullrequest",
"title": "RepoPullrequest",
"properties": {
"closed_at": {
"format": "date-time",
"type": "string"
},
"commit_ids": {
"$ref": "#/components/schemas/property_RepoPullrequest_commit_ids"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"id": {
"type": "string"
},
"labels": {
"$ref": "#/components/schemas/property_RepoPullrequest_labels"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"repo_id": {
"type": "string"
},
"status": {
"enum": [
"PENDING",
"APPROVED",
"REJECTED"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"user_ids": {
"$ref": "#/components/schemas/property_RepoPullrequest_user_ids"
}
},
"type": "object"
}