Paragon · Schema

User

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
id string The unique identifier for the Connected User.
meta object Metadata associated with the Connected User.
authenticated boolean Whether the user is currently authenticated.
integrations object A map of integration types to their status for this user.
View JSON Schema on GitHub

JSON Schema

paragon-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for the Connected User."
    },
    "meta": {
      "type": "object",
      "description": "Metadata associated with the Connected User.",
      "additionalProperties": {
        "type": "string"
      }
    },
    "authenticated": {
      "type": "boolean",
      "description": "Whether the user is currently authenticated."
    },
    "integrations": {
      "type": "object",
      "description": "A map of integration types to their status for this user.",
      "additionalProperties": {
        "$ref": "#/components/schemas/UserIntegration"
      }
    }
  }
}