Forgejo · Schema
PublicKey
PublicKey publickey is a user key to push code to repository
GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests
Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| fingerprint | string | |
| id | integer | |
| key | string | |
| key_type | string | |
| read_only | boolean | |
| title | string | |
| updated_at | string | |
| url | string | |
| user | object | |
| verified | boolean |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PublicKey",
"description": "PublicKey publickey is a user key to push code to repository",
"type": "object",
"properties": {
"created_at": {
"type": "string",
"format": "date-time",
"x-go-name": "Created"
},
"fingerprint": {
"type": "string",
"x-go-name": "Fingerprint"
},
"id": {
"type": "integer",
"format": "int64",
"x-go-name": "ID"
},
"key": {
"type": "string",
"x-go-name": "Key"
},
"key_type": {
"type": "string",
"x-go-name": "KeyType"
},
"read_only": {
"type": "boolean",
"x-go-name": "ReadOnly"
},
"title": {
"type": "string",
"x-go-name": "Title"
},
"updated_at": {
"type": "string",
"format": "date-time",
"x-go-name": "Updated"
},
"url": {
"type": "string",
"x-go-name": "URL"
},
"user": {
"$ref": "#/definitions/User"
},
"verified": {
"type": "boolean",
"x-go-name": "Verified"
}
},
"x-go-package": "forgejo.org/modules/structs"
}