{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/secret-scanning-location-issue-body", "title": "secret-scanning-location-issue-body", "description": "Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue.", "type": "object", "properties": { "issue_body_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_body_url" ] }