public-key-full

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-public-key-full-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/public-key-full",
  "title": "public-key-full",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "key": {
      "type": "string"
    },
    "user_id": {
      "nullable": true,
      "type": "integer"
    },
    "repository_id": {
      "nullable": true,
      "type": "integer",
      "format": "int64"
    },
    "url": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "read_only": {
      "type": "boolean"
    },
    "verified": {
      "type": "boolean"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "added_by": {
      "type": "string",
      "nullable": true
    },
    "last_used": {
      "nullable": true,
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "id",
    "key",
    "url",
    "title",
    "verified",
    "created_at",
    "read_only",
    "last_used",
    "user_id",
    "repository_id"
  ]
}