secret-scanning-location-discussion-title

Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion.

APIs.ioEngineeringPlatform

Properties

Name Type Description
discussion_title_url string The URL to the discussion where the secret was detected.
View JSON Schema on GitHub

JSON Schema

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