Citrix · Schema

Application

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
id string Unique identifier for the application
name string Application name
publishedName string Published display name
description string Application description
enabled boolean Whether the application is enabled
commandLineExecutable string Path to the application executable
applicationFolder string Folder containing the application
View JSON Schema on GitHub

JSON Schema

citrix-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Application",
  "title": "Application",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the application"
    },
    "name": {
      "type": "string",
      "description": "Application name"
    },
    "publishedName": {
      "type": "string",
      "description": "Published display name"
    },
    "description": {
      "type": "string",
      "description": "Application description"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the application is enabled"
    },
    "commandLineExecutable": {
      "type": "string",
      "description": "Path to the application executable"
    },
    "applicationFolder": {
      "type": "string",
      "description": "Folder containing the application"
    }
  }
}