JFrog · Schema

TokenResponse

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
token_id string
access_token string The access token value (JWT)
refresh_token string Refresh token (if requested)
expires_in integer Token lifetime in seconds
scope string
token_type string
reference_token string Reference token (if requested)
View JSON Schema on GitHub

JSON Schema

jfrog-tokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenResponse",
  "title": "TokenResponse",
  "type": "object",
  "properties": {
    "token_id": {
      "type": "string"
    },
    "access_token": {
      "type": "string",
      "description": "The access token value (JWT)"
    },
    "refresh_token": {
      "type": "string",
      "description": "Refresh token (if requested)"
    },
    "expires_in": {
      "type": "integer",
      "description": "Token lifetime in seconds"
    },
    "scope": {
      "type": "string"
    },
    "token_type": {
      "type": "string",
      "example": "Bearer"
    },
    "reference_token": {
      "type": "string",
      "description": "Reference token (if requested)"
    }
  }
}