Airbyte · JSON Structure

Airbyte Application Read Structure

ApplicationRead schema from Airbyte API

Type: object Properties: 5 Required: 5
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

ApplicationRead is a JSON Structure definition published by Airbyte, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name clientId clientSecret createdAt

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-application-read-structure.json",
  "name": "ApplicationRead",
  "description": "ApplicationRead schema from Airbyte API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "clientId": {
      "type": "string"
    },
    "clientSecret": {
      "type": "string"
    },
    "createdAt": {
      "type": "int64"
    }
  },
  "required": [
    "id",
    "name",
    "clientId",
    "clientSecret",
    "createdAt"
  ]
}