Airbyte · Schema

ApplicationTokenRequestWithGrant

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
client_id string
client_secret string
grant-type object
View JSON Schema on GitHub

JSON Schema

airbyte-applicationtokenrequestwithgrant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationTokenRequestWithGrant",
  "title": "ApplicationTokenRequestWithGrant",
  "required": [
    "client_id",
    "client_secret",
    "grant_type"
  ],
  "type": "object",
  "properties": {
    "client_id": {
      "type": "string"
    },
    "client_secret": {
      "type": "string"
    },
    "grant-type": {
      "enum": [
        "client_credentials"
      ]
    }
  },
  "x-speakeasy-component": true
}