webhooks_deploy_key

The [`deploy key`](https://docs.github.com/[email protected]/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource.

APIs.ioEngineeringPlatform

Properties

Name Type Description
added_by string
created_at string
id integer
key string
last_used string
read_only boolean
title string
url string
verified boolean
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhooks-deploy-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhooks_deploy_key",
  "title": "webhooks_deploy_key",
  "description": "The [`deploy key`](https://docs.github.com/[email protected]/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource.",
  "type": "object",
  "properties": {
    "added_by": {
      "type": "string",
      "nullable": true
    },
    "created_at": {
      "type": "string"
    },
    "id": {
      "type": "integer"
    },
    "key": {
      "type": "string"
    },
    "last_used": {
      "type": "string",
      "nullable": true
    },
    "read_only": {
      "type": "boolean"
    },
    "title": {
      "type": "string"
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "verified": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "key",
    "url",
    "title",
    "verified",
    "created_at",
    "read_only"
  ]
}