Merge · Schema

AccountToken

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
account_token string
integration object
id string
View JSON Schema on GitHub

JSON Schema

merge-accounttoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountToken",
  "title": "AccountToken",
  "type": "object",
  "properties": {
    "account_token": {
      "type": "string"
    },
    "integration": {
      "$ref": "#/components/schemas/AccountIntegration"
    },
    "id": {
      "type": "string"
    }
  },
  "required": [
    "account_token",
    "integration",
    "id"
  ]
}