GameServer
GameServer describes a live multiplayer server hosting a specific VideoGame. Server directories, hosting providers, and game-launch menus publish GameServer to tell consumers which instances are online, how many players are connected, and what game they're running.
Full example of schema.org/GameServer json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "GameServer",
"name": "Dunmore East — PvP",
"game": {
"@type": "VideoGame",
"name": "XooQuest: Season 4"
},
"playersOnline": 42,
"serverStatus": "https://schema.org/Online",
"provider": {
"@type": "Organization",
"name": "Dunmore Interactive"
}
}
</script>Direct properties (3)
game: VideoGame being hosted.playersOnline: current Integer count of connected players.serverStatus: GameServerStatus enum —Online,OnlineFull,OfflineTemporarily,OfflinePermanently.
Often nested inside the VideoGame it hosts via gameServer, or listed independently under a hosting Organization.
Minimal valid version
The smallest markup that still produces a valid GameServer entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "GameServer",
"name": "Dunmore East",
"playersOnline": 42,
"serverStatus": "https://schema.org/Online"
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsNo dedicated rich result (game-directory / launcher signals)
Common GameServer mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
serverStatus as free text
Wrong"serverStatus": "online"Right"serverStatus": "https://schema.org/Online"GameServerStatus is a closed enum; use the canonical URL.
- 02
playersOnline updated rarely
WrongStatic playersOnline value stale by hoursRightRecompute on every render or rely on a live endpointStale counts mislead consumers; directories deprioritise servers whose stats don't match their probes.
- 03
GameServer without game reference
WrongServer with no game propertyRightAlways include game (VideoGame reference)Without the game, the GameServer can't be filtered into the right game directory.
Schema properties in this example
Also mentioned in 2 other examples
GameServer also appears in GameServerStatus, and VideoGame. See the full GameServer schema page for every reference.
About the example data
A live XooQuest Season 4 PvP server hosted by Dunmore Interactive — "Dunmore East", 42/64 players online, accepting connections.
Comments
Loading comments...