{ "$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" ] }