Merge · Schema

GenerateRemoteKeyRequest

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

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
name string The name of the remote key
View JSON Schema on GitHub

JSON Schema

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