Citrix · Schema

Resource

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
id string Resource identifier
name string Resource display name
type string Resource type
iconurl string URL to the resource icon
launchurl string URL to launch the resource
launchstatusurl string URL to check launch readiness
View JSON Schema on GitHub

JSON Schema

citrix-resource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Resource",
  "title": "Resource",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Resource identifier"
    },
    "name": {
      "type": "string",
      "description": "Resource display name"
    },
    "type": {
      "type": "string",
      "enum": [
        "Citrix.MPS.Application",
        "Citrix.MPS.Desktop"
      ],
      "description": "Resource type"
    },
    "iconurl": {
      "type": "string",
      "description": "URL to the resource icon"
    },
    "launchurl": {
      "type": "string",
      "description": "URL to launch the resource"
    },
    "launchstatusurl": {
      "type": "string",
      "description": "URL to check launch readiness"
    }
  }
}