Citrix · Schema

CreateDeliveryGroupRequest

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
name string Name for the new delivery group
description string Description for the delivery group
deliveryType string Type of resources to deliver
View JSON Schema on GitHub

JSON Schema

citrix-createdeliverygrouprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateDeliveryGroupRequest",
  "title": "CreateDeliveryGroupRequest",
  "type": "object",
  "required": [
    "name",
    "deliveryType"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name for the new delivery group"
    },
    "description": {
      "type": "string",
      "description": "Description for the delivery group"
    },
    "deliveryType": {
      "type": "string",
      "enum": [
        "DesktopsOnly",
        "AppsOnly",
        "DesktopsAndApps"
      ],
      "description": "Type of resources to deliver"
    }
  }
}