Unity · Schema

PlayerList

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
results array
next string
View JSON Schema on GitHub

JSON Schema

unity-playerlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlayerList",
  "title": "PlayerList",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Player"
      }
    },
    "next": {
      "type": "string"
    }
  }
}