secret-scanning-location-discussion-comment

Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion.

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-secret-scanning-location-discussion-comment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/secret-scanning-location-discussion-comment",
  "title": "secret-scanning-location-discussion-comment",
  "description": "Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion.",
  "type": "object",
  "properties": {
    "discussion_comment_url": {
      "type": "string",
      "format": "uri",
      "description": "The API URL to get the discussion comment where the secret was detected.",
      "example": "https://github.com/community/community/discussions/39082#discussioncomment-4158232"
    }
  },
  "required": [
    "discussion_comment_url"
  ]
}