Airbyte · Schema

ApplicationRead

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
id string
name string
clientId string
clientSecret string
createdAt integer
View JSON Schema on GitHub

JSON Schema

airbyte-applicationread-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationRead",
  "title": "ApplicationRead",
  "required": [
    "id",
    "name",
    "clientId",
    "clientSecret",
    "createdAt"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "clientId": {
      "type": "string"
    },
    "clientSecret": {
      "type": "string"
    },
    "createdAt": {
      "type": "integer",
      "format": "int64"
    }
  },
  "x-speakeasy-component": true
}