DependabotPublicKey

The public key used for setting Dependabot Secrets.

APIs.ioEngineeringPlatform

Properties

Name Type Description
key_id string The identifier for the key.
key string The Base64 encoded public key.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dependabot-public-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dependabot-public-key",
  "title": "DependabotPublicKey",
  "description": "The public key used for setting Dependabot Secrets.",
  "type": "object",
  "properties": {
    "key_id": {
      "description": "The identifier for the key.",
      "type": "string",
      "example": "1234567"
    },
    "key": {
      "description": "The Base64 encoded public key.",
      "type": "string",
      "example": "hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs="
    }
  },
  "required": [
    "key_id",
    "key"
  ]
}