Airbyte · Schema

PublicAccessTokenResponse

PublicAccessTokenResponse schema from Airbyte API

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

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

JSON Schema

airbyte-public-access-token-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-public-access-token-response-schema.json",
  "title": "PublicAccessTokenResponse",
  "description": "PublicAccessTokenResponse schema from Airbyte API",
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "token_type": {
      "enum": [
        "Bearer"
      ]
    },
    "expires_in": {
      "type": "integer",
      "format": "int64"
    }
  },
  "required": [
    "access_token",
    "token_type",
    "expires_in"
  ]
}