action files_get_public_keys_id { label: "Show Public Key" description: "Show Public Key" provider: files method: GET path: "/public_keys/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "List Public Keys" properties: { created_at: { type: "string" format: "date-time" description: "Public key created at date/time" } fingerprint: { type: "string" description: "Public key fingerprint" } id: { type: "integer" format: "int32" description: "Public key ID" } title: { type: "string" description: "Public key title" } } } }