Airbyte · JSON Structure

Airbyte Groups Response Structure

List/Array of multiple groups

Type: object Properties: 3 Required: 1
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

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

Properties

data next previous

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-groups-response-structure.json",
  "name": "GroupsResponse",
  "description": "List/Array of multiple groups",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GroupResponse"
      }
    },
    "next": {
      "type": "string",
      "description": "Link to the next page of results",
      "nullable": true
    },
    "previous": {
      "type": "string",
      "description": "Link to the previous page of results",
      "nullable": true
    }
  },
  "required": [
    "data"
  ]
}