Airbyte · Schema

ApplicationRead

ApplicationRead schema from Airbyte API

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-application-read-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-application-read-schema.json",
  "title": "ApplicationRead",
  "description": "ApplicationRead schema from Airbyte API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "clientId": {
      "type": "string"
    },
    "clientSecret": {
      "type": "string"
    },
    "createdAt": {
      "type": "integer",
      "format": "int64"
    }
  },
  "required": [
    "id",
    "name",
    "clientId",
    "clientSecret",
    "createdAt"
  ]
}