Citrix · Schema

ServicePrincipal

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
id string Unique identifier for the service principal
displayName string Display name of the service principal
clientId string Client ID for OAuth authentication
customerId string Associated customer ID
createdAt string Creation timestamp
View JSON Schema on GitHub

JSON Schema

citrix-serviceprincipal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServicePrincipal",
  "title": "ServicePrincipal",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the service principal"
    },
    "displayName": {
      "type": "string",
      "description": "Display name of the service principal"
    },
    "clientId": {
      "type": "string",
      "description": "Client ID for OAuth authentication"
    },
    "customerId": {
      "type": "string",
      "description": "Associated customer ID"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Creation timestamp"
    }
  }
}