{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ssh_account_key", "title": "ssh_account_key", "allOf": [ { "$ref": "#/components/schemas/ssh_key" }, { "type": "object", "title": "SSH Account Key", "description": "Represents an SSH public key for a user.", "properties": { "owner": { "$ref": "#/components/schemas/account" } }, "additionalProperties": true } ] }