Roku · Schema

App

An installed Roku channel.

StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

Properties

Name Type Description
id string The Roku channel/app identifier.
type string appl = installed channel, menu = system menu, tvin = TV input.
version string
subtype string
name string Human-readable channel name.
View JSON Schema on GitHub

JSON Schema

external-control-protocol-app-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/roku/refs/heads/main/json-schema/external-control-protocol-app-schema.json",
  "title": "App",
  "description": "An installed Roku channel.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Roku channel/app identifier.",
      "example": "12"
    },
    "type": {
      "type": "string",
      "enum": [
        "appl",
        "menu",
        "tvin"
      ],
      "description": "appl = installed channel, menu = system menu, tvin = TV input."
    },
    "version": {
      "type": "string"
    },
    "subtype": {
      "type": "string"
    },
    "name": {
      "type": "string",
      "description": "Human-readable channel name."
    }
  }
}