Citrix · Schema

TokenResponse

Application DeliveryDesktop-As-A-ServiceNetworkingVirtualizationWorkspaceFortune 1000

Properties

Name Type Description
token_type string Token type (bearer)
access_token string OAuth 2.0 access token
expires_in integer Token expiration time in seconds
View JSON Schema on GitHub

JSON Schema

citrix-tokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenResponse",
  "title": "TokenResponse",
  "type": "object",
  "properties": {
    "token_type": {
      "type": "string",
      "description": "Token type (bearer)"
    },
    "access_token": {
      "type": "string",
      "description": "OAuth 2.0 access token"
    },
    "expires_in": {
      "type": "integer",
      "description": "Token expiration time in seconds"
    }
  }
}