Merge · Schema

RemoteKey

# The RemoteKey Object ### Description The `RemoteKey` object is used to represent a request for a new remote key. ### Usage Example Post a `GenerateRemoteKey` to receive a new `RemoteKey`.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
name string
key string
View JSON Schema on GitHub

JSON Schema

merge-remotekey-schema.json Raw ↑
{
  "$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`."
}