{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "DeployKey", "description": "DeployKey a deploy key", "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_id": { "type": "integer", "format": "int64", "x-go-name": "KeyID" }, "read_only": { "type": "boolean", "x-go-name": "ReadOnly" }, "repository": { "$ref": "#/definitions/Repository" }, "title": { "type": "string", "x-go-name": "Title" }, "url": { "type": "string", "x-go-name": "URL" } }, "x-go-package": "forgejo.org/modules/structs" }