{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RemoteKey", "title": "RemoteKey", "type": "object", "properties": { "name": { "type": "string" }, "key": { "type": "string" } }, "required": [ "name", "key" ], "description": "# The RemoteKey Object\n### Description\nThe `RemoteKey` object is used to represent a request for a new remote key.\n\n### Usage Example\nPost a `GenerateRemoteKey` to receive a new `RemoteKey`." }