Langflow · Schema

UserRead

A Langflow user, including authentication and authorization metadata.

AIArtificial IntelligenceAgentsWorkflowsLow-CodeVisual BuilderLangChainRAGMCPOpen SourceFastAPI

Properties

Name Type Description
create_at string
id string
is_active boolean
is_superuser boolean
last_login_at object
optins object
profile_image object
store_api_key object
updated_at string
username string
View JSON Schema on GitHub

JSON Schema

langflow-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/langflow/main/json-schema/langflow-user-schema.json",
  "title": "UserRead",
  "description": "A Langflow user, including authentication and authorization metadata.",
  "properties": {
    "create_at": {
      "format": "date-time",
      "title": "Create At",
      "type": "string"
    },
    "id": {
      "format": "uuid",
      "title": "Id",
      "type": "string"
    },
    "is_active": {
      "title": "Is Active",
      "type": "boolean"
    },
    "is_superuser": {
      "title": "Is Superuser",
      "type": "boolean"
    },
    "last_login_at": {
      "anyOf": [
        {
          "format": "date-time",
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Last Login At"
    },
    "optins": {
      "anyOf": [
        {
          "additionalProperties": true,
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "title": "Optins"
    },
    "profile_image": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Profile Image"
    },
    "store_api_key": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Store Api Key"
    },
    "updated_at": {
      "format": "date-time",
      "title": "Updated At",
      "type": "string"
    },
    "username": {
      "title": "Username",
      "type": "string"
    }
  },
  "required": [
    "username",
    "profile_image",
    "store_api_key",
    "is_active",
    "is_superuser",
    "create_at",
    "updated_at",
    "last_login_at"
  ],
  "type": "object"
}