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