SSH Signing Key

A public SSH key used to sign Git commits

APIs.ioEngineeringPlatform

Properties

Name Type Description
key string
id integer
title string
created_at string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-ssh-signing-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ssh-signing-key",
  "title": "SSH Signing Key",
  "description": "A public SSH key used to sign Git commits",
  "type": "object",
  "properties": {
    "key": {
      "type": "string"
    },
    "id": {
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "key",
    "id",
    "title",
    "created_at"
  ]
}