@itentialopensource/adapter-github
Version:
This adapter integrates with system described as: github.
75 lines • 2.07 kB
JSON
{
"$id": "schema.json",
"type": "object",
"schema": "http://json-schema.org/draft-07/schema#",
"translate": true,
"dynamicfields": true,
"properties": {
"ph_request_type": {
"type": "string",
"description": "type of request (internal to adapter)",
"default": "pullsCreateReplyForReviewComment",
"enum": [
"pullsCreateReplyForReviewComment",
"pullsListRequestedReviewers",
"pullsRequestReviewers",
"pullsRemoveRequestedReviewers",
"pullsListReviews",
"pullsCreateReview",
"pullsGetReview",
"pullsUpdateReview",
"pullsDeletePendingReview",
"pullsListCommentsForReview",
"pullsDismissReview",
"pullsSubmitReview",
"pullsUpdateBranch"
],
"external_name": "ph_request_type"
},
"pullNumber": {
"type": "number",
"description": "The number that identifies the pull request.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "pull_number"
},
"commentId": {
"type": "number",
"description": "The unique identifier of the comment.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "comment_id"
},
"perPage": {
"type": "number",
"description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-i...(description truncated)",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "per_page"
},
"reviewId": {
"type": "number",
"description": "The unique identifier of the review.",
"parse": false,
"encode": false,
"encrypt": {
"type": "AES",
"key": ""
},
"external_name": "review_id"
}
},
"definitions": {}
}