Lobsters · Schema

User

A Lobsters community member's public profile

Link AggregationCommunityTechnologyNewsStoriesCommentsTags

Properties

Name Type Description
username string Unique username for the account
created_at string ISO 8601 timestamp when the account was created
is_admin boolean Whether the user has administrator privileges
is_moderator boolean Whether the user has moderator privileges
karma integer Karma score derived from story and comment votes (omitted for admins)
homepage stringnull User's personal homepage URL
about string HTML-rendered about/bio text
avatar_url string URL of the user's avatar image
invited_by_user stringnull Username of the user who sent the invitation; null for founding members
github_username string GitHub username if linked (omitted when not set)
mastodon_username string Mastodon handle if linked (omitted when not set)
View JSON Schema on GitHub

JSON Schema

user.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lobsters/refs/heads/main/json-schema/user.json",
  "title": "User",
  "description": "A Lobsters community member's public profile",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "description": "Unique username for the account"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the account was created"
    },
    "is_admin": {
      "type": "boolean",
      "description": "Whether the user has administrator privileges"
    },
    "is_moderator": {
      "type": "boolean",
      "description": "Whether the user has moderator privileges"
    },
    "karma": {
      "type": "integer",
      "description": "Karma score derived from story and comment votes (omitted for admins)"
    },
    "homepage": {
      "type": ["string", "null"],
      "format": "uri",
      "description": "User's personal homepage URL"
    },
    "about": {
      "type": "string",
      "description": "HTML-rendered about/bio text"
    },
    "avatar_url": {
      "type": "string",
      "format": "uri",
      "description": "URL of the user's avatar image"
    },
    "invited_by_user": {
      "type": ["string", "null"],
      "description": "Username of the user who sent the invitation; null for founding members"
    },
    "github_username": {
      "type": "string",
      "description": "GitHub username if linked (omitted when not set)"
    },
    "mastodon_username": {
      "type": "string",
      "description": "Mastodon handle if linked (omitted when not set)"
    }
  },
  "required": [
    "username",
    "created_at",
    "is_admin",
    "is_moderator",
    "homepage",
    "about",
    "avatar_url"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/user"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.