Roku · Schema

GroupMemberOut

GroupMemberOut schema from Roku Nabu Cloud

StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

Properties

Name Type Description
id string
username string
full_name object
email object
group_role_id integer
group_role_name string
View JSON Schema on GitHub

JSON Schema

nabu-cloud-group-member-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-member-out-schema.json",
  "title": "GroupMemberOut",
  "description": "GroupMemberOut schema from Roku Nabu Cloud",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "title": "Id"
    },
    "username": {
      "type": "string",
      "title": "Username"
    },
    "full_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Full Name"
    },
    "email": {
      "anyOf": [
        {
          "type": "string",
          "format": "email"
        },
        {
          "type": "null"
        }
      ],
      "title": "Email"
    },
    "group_role_id": {
      "type": "integer",
      "title": "Group Role Id"
    },
    "group_role_name": {
      "type": "string",
      "title": "Group Role Name"
    }
  },
  "required": [
    "id",
    "username",
    "full_name",
    "email",
    "group_role_id",
    "group_role_name"
  ]
}