Citrix · Schema

Hypervisor

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
id string Unique identifier for the hypervisor connection
name string Hypervisor connection name
connectionType string Type of hypervisor (e.g., AzureRM, AWS, vSphere)
state string Current connection state
View JSON Schema on GitHub

JSON Schema

citrix-hypervisor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Hypervisor",
  "title": "Hypervisor",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the hypervisor connection"
    },
    "name": {
      "type": "string",
      "description": "Hypervisor connection name"
    },
    "connectionType": {
      "type": "string",
      "description": "Type of hypervisor (e.g., AzureRM, AWS, vSphere)"
    },
    "state": {
      "type": "string",
      "description": "Current connection state"
    }
  }
}