{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/secret-scanning-location-pull-request-review-comment", "title": "secret-scanning-location-pull-request-review-comment", "description": "Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request.", "type": "object", "properties": { "pull_request_review_comment_url": { "type": "string", "format": "uri", "description": "The API URL to get the pull request review comment where the secret was detected.", "example": "https://api.github.com/repos/octocat/Hello-World/pulls/comments/12" } }, "required": [ "pull_request_review_comment_url" ] }