Unity · Schema

Unity Player

Schema for a Unity Gaming Services player account with authentication, identity, and metadata.

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
id string Unique Unity player identifier
externalIds array Linked external identity providers
disabled boolean Whether the player account is disabled
lastLoginDate string ISO 8601 timestamp of the player's last login
createdAt string ISO 8601 timestamp of account creation
View JSON Schema on GitHub

JSON Schema

unity-player-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/unity/main/json-schema/unity-player-schema.json",
  "title": "Unity Player",
  "description": "Schema for a Unity Gaming Services player account with authentication, identity, and metadata.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique Unity player identifier"
    },
    "externalIds": {
      "type": "array",
      "description": "Linked external identity providers",
      "items": {
        "type": "object",
        "properties": {
          "providerId": {
            "type": "string",
            "enum": ["google", "apple", "steam", "facebook", "custom"],
            "description": "External identity provider name"
          },
          "externalId": {
            "type": "string",
            "description": "Player identifier at the external provider"
          }
        },
        "required": ["providerId", "externalId"]
      }
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the player account is disabled"
    },
    "lastLoginDate": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp of the player's last login"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp of account creation"
    }
  },
  "required": ["id"]
}

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/unity-player"
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 email required.

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