Roku · JSON Structure

Nabu Cloud User Out Structure

UserOut schema from Roku Nabu Cloud

Type: object Properties: 4 Required: 4
StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

UserOut is a JSON Structure definition published by Roku, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id username full_name email

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/roku/refs/heads/main/json-structure/nabu-cloud-user-out-structure.json",
  "name": "UserOut",
  "description": "UserOut schema from Roku Nabu Cloud",
  "type": "object",
  "properties": {
    "id": {
      "type": "uuid",
      "title": "Id"
    },
    "username": {
      "type": "string",
      "title": "Username"
    },
    "full_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Full Name"
    },
    "email": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Email"
    }
  },
  "required": [
    "id",
    "username",
    "full_name",
    "email"
  ]
}