JFrog · Schema

AccessToken

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
access_token string
expires_in integer
scope string
token_type string
refresh_token string
View JSON Schema on GitHub

JSON Schema

jfrog-accesstoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccessToken",
  "title": "AccessToken",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "expires_in": {
      "type": "integer"
    },
    "scope": {
      "type": "string"
    },
    "token_type": {
      "type": "string",
      "example": "Bearer"
    },
    "refresh_token": {
      "type": "string"
    }
  }
}