Play game

  • The actions.intent.PLAY_GAME built-in intent allows users to launch games through Google Assistant and is required for implicit invocation of game Actions.

  • Developers must register their game Action for this intent and provide JSON-LD schema specifying game details like name, genre, and description to enable game discovery and engagement.

  • Users can trigger this intent with phrases like "Play a game" or "Play a trivia game", allowing for a natural and intuitive way to access games.

Action ID
actions.intent.PLAY_GAME
Description
Play a game. If your Action is a game, you must register for this built-in intent in order to be eligible for implicit invocation.
Example queries
JSON-LD sample
[
  {
    "exampleValues": [
      {
        "@context": "https://schema.org",
        "description": "cute animals",
        "genre": "adventure",
        "name": "Example Game 1",
        "schemaType": "Game"
      }
    ],
    "name": "game",
    "schemaType": []
  }
]