Roku · Schema

IceServer

IceServer schema from Roku Nabu Cloud

StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

Properties

Name Type Description
urls array
username object
credential object
View JSON Schema on GitHub

JSON Schema

nabu-cloud-ice-server-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/nabu-cloud-ice-server-schema.json",
  "title": "IceServer",
  "description": "IceServer schema from Roku Nabu Cloud",
  "type": "object",
  "properties": {
    "urls": {
      "items": {
        "type": "string"
      },
      "type": "array",
      "title": "Urls"
    },
    "username": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Username"
    },
    "credential": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Credential"
    }
  },
  "required": [
    "urls"
  ]
}