Apache Guacamole · JSON Structure

Guacamole Rest Active Connection Structure

An active remote desktop session

Type: object Properties: 5
ApacheOpen SourceRDPRemote AccessRemote DesktopSSHVNCWeb Gateway

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

Properties

identifier connectionIdentifier username startDate remoteHost

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-active-connection-structure.json",
  "name": "ActiveConnection",
  "description": "An active remote desktop session",
  "type": "object",
  "properties": {
    "identifier": {
      "type": "string",
      "description": "Unique active connection identifier"
    },
    "connectionIdentifier": {
      "type": "string",
      "description": "Associated connection configuration ID"
    },
    "username": {
      "type": "string",
      "description": "User who started the session"
    },
    "startDate": {
      "type": "int64",
      "description": "Session start time in milliseconds since epoch"
    },
    "remoteHost": {
      "type": "string",
      "description": "IP address of the connecting client"
    }
  }
}