GitHub Actions · Schema

ActionsPublicKey

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

github-actions-actions-public-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActionsPublicKey",
  "type": "object",
  "properties": {
    "key_id": {
      "type": "string",
      "description": "The identifier for the key."
    },
    "key": {
      "type": "string",
      "description": "The Base64 encoded public key."
    }
  }
}