Paragon · Schema

Integration

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
id string The unique identifier for the integration.
name string The display name of the integration.
type string The integration type identifier (e.g., salesforce, hubspot).
enabled boolean Whether the integration is enabled for the authenticated user.
icon string URL to the integration icon.
View JSON Schema on GitHub

JSON Schema

paragon-integration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Integration",
  "title": "Integration",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for the integration."
    },
    "name": {
      "type": "string",
      "description": "The display name of the integration."
    },
    "type": {
      "type": "string",
      "description": "The integration type identifier (e.g., salesforce, hubspot)."
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the integration is enabled for the authenticated user."
    },
    "icon": {
      "type": "string",
      "description": "URL to the integration icon."
    }
  }
}