secret-scanning-location-issue-title

Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue.

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

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