secret-scanning-location-pull-request-review

Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
pull_request_review_url string The API URL to get the pull request review where the secret was detected.
View JSON Schema on GitHub

JSON Schema

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