Apache Guacamole · JSON Structure

Guacamole Rest User Structure

Guacamole user account

Type: object Properties: 4
ApacheOpen SourceRDPRemote AccessRemote DesktopSSHVNCWeb Gateway

User is a JSON Structure definition published by Apache Guacamole, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

username password attributes lastActive

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/apache-guacamole/refs/heads/main/json-structure/guacamole-rest-user-structure.json",
  "name": "User",
  "description": "Guacamole user account",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "description": "Unique username"
    },
    "password": {
      "type": "string",
      "description": "User password (write-only)"
    },
    "attributes": {
      "type": "object",
      "description": "Additional user attributes"
    },
    "lastActive": {
      "type": "int64",
      "description": "Timestamp of last user activity in milliseconds"
    }
  }
}