{ "$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." } } }