User Search Result Item

User Search Result Item

APIs.ioEngineeringPlatform

Properties

Name Type Description
login string
id integer
node_id string
avatar_url string
gravatar_id string
url string
html_url string
followers_url string
subscriptions_url string
organizations_url string
repos_url string
received_events_url string
type string
score number
following_url string
gists_url string
starred_url string
events_url string
public_repos integer
public_gists integer
followers integer
following integer
created_at string
updated_at string
name string
bio string
email string
location string
site_admin boolean
hireable boolean
text_matches object
blog string
company string
suspended_at string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-user-search-result-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/user-search-result-item",
  "title": "User Search Result Item",
  "description": "User Search Result Item",
  "type": "object",
  "properties": {
    "login": {
      "type": "string"
    },
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "node_id": {
      "type": "string"
    },
    "avatar_url": {
      "type": "string",
      "format": "uri"
    },
    "gravatar_id": {
      "type": "string",
      "nullable": true
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "html_url": {
      "type": "string",
      "format": "uri"
    },
    "followers_url": {
      "type": "string",
      "format": "uri"
    },
    "subscriptions_url": {
      "type": "string",
      "format": "uri"
    },
    "organizations_url": {
      "type": "string",
      "format": "uri"
    },
    "repos_url": {
      "type": "string",
      "format": "uri"
    },
    "received_events_url": {
      "type": "string",
      "format": "uri"
    },
    "type": {
      "type": "string"
    },
    "score": {
      "type": "number"
    },
    "following_url": {
      "type": "string"
    },
    "gists_url": {
      "type": "string"
    },
    "starred_url": {
      "type": "string"
    },
    "events_url": {
      "type": "string"
    },
    "public_repos": {
      "type": "integer"
    },
    "public_gists": {
      "type": "integer"
    },
    "followers": {
      "type": "integer"
    },
    "following": {
      "type": "integer"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "bio": {
      "type": "string",
      "nullable": true
    },
    "email": {
      "type": "string",
      "format": "email",
      "nullable": true
    },
    "location": {
      "type": "string",
      "nullable": true
    },
    "site_admin": {
      "type": "boolean"
    },
    "hireable": {
      "type": "boolean",
      "nullable": true
    },
    "text_matches": {
      "$ref": "#/components/schemas/search-result-text-matches"
    },
    "blog": {
      "type": "string",
      "nullable": true
    },
    "company": {
      "type": "string",
      "nullable": true
    },
    "suspended_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  },
  "required": [
    "avatar_url",
    "events_url",
    "followers_url",
    "following_url",
    "gists_url",
    "gravatar_id",
    "html_url",
    "id",
    "node_id",
    "login",
    "organizations_url",
    "received_events_url",
    "repos_url",
    "site_admin",
    "starred_url",
    "subscriptions_url",
    "type",
    "url",
    "score"
  ]
}