The public key used for setting Dependabot Secrets.
{ "$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" ] }