secret-scanning-location-pull-request-title

Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request.

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

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