Paragon · Schema

UserIntegration

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
enabled boolean Whether the integration is enabled for this user.
credentialStatus string The status of the integration credential.
providerId string The provider-specific user ID.
View JSON Schema on GitHub

JSON Schema

paragon-userintegration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserIntegration",
  "title": "UserIntegration",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether the integration is enabled for this user."
    },
    "credentialStatus": {
      "type": "string",
      "description": "The status of the integration credential.",
      "enum": [
        "VALID",
        "INVALID",
        "EXPIRED"
      ]
    },
    "providerId": {
      "type": "string",
      "description": "The provider-specific user ID."
    }
  }
}