Citrix · Schema

Service

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
name string Service name
ip string IP address of the service
port integer Port number
servicetype string Protocol type
svrstate string Current state of the service
View JSON Schema on GitHub

JSON Schema

citrix-service-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Service",
  "title": "Service",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Service name"
    },
    "ip": {
      "type": "string",
      "description": "IP address of the service"
    },
    "port": {
      "type": "integer",
      "description": "Port number"
    },
    "servicetype": {
      "type": "string",
      "description": "Protocol type"
    },
    "svrstate": {
      "type": "string",
      "description": "Current state of the service"
    }
  }
}