Citrix · Schema

CreateApplicationRequest

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
name string Application name
description string Application description
url string Application URL
appType string Type of application
View JSON Schema on GitHub

JSON Schema

citrix-createapplicationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateApplicationRequest",
  "title": "CreateApplicationRequest",
  "type": "object",
  "required": [
    "name",
    "url",
    "appType"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Application name"
    },
    "description": {
      "type": "string",
      "description": "Application description"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Application URL"
    },
    "appType": {
      "type": "string",
      "enum": [
        "SaaS",
        "Web"
      ],
      "description": "Type of application"
    }
  }
}