Airbyte · Schema

PublicAccessTokenResponse

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-publicaccesstokenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PublicAccessTokenResponse",
  "title": "PublicAccessTokenResponse",
  "required": [
    "access_token",
    "token_type",
    "expires_in"
  ],
  "type": "object",
  "properties": {
    "access_token": {
      "type": "string"
    },
    "token_type": {
      "enum": [
        "Bearer"
      ]
    },
    "expires_in": {
      "type": "integer",
      "format": "int64"
    }
  },
  "x-speakeasy-component": true
}