Roku · Schema

GroupOut

GroupOut schema from Roku Nabu Cloud

StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

Properties

Name Type Description
id integer
name string The name of the group. Unique in the organisation
View JSON Schema on GitHub

JSON Schema

nabu-cloud-group-out-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-group-out-schema.json",
  "title": "GroupOut",
  "description": "GroupOut schema from Roku Nabu Cloud",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "title": "Id"
    },
    "name": {
      "type": "string",
      "maxLength": 255,
      "minLength": 3,
      "title": "Name",
      "description": "The name of the group. Unique in the organisation"
    }
  },
  "required": [
    "id",
    "name"
  ]
}