Airbyte · JSON Structure

Airbyte Group Permission Response Structure

Provides details of a single group permission

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

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

Properties

permissionId groupId permissionType workspaceId organizationId

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-group-permission-response-structure.json",
  "name": "GroupPermissionResponse",
  "description": "Provides details of a single group permission",
  "type": "object",
  "properties": {
    "permissionId": {
      "type": "uuid",
      "description": "The ID of the permission"
    },
    "groupId": {
      "type": "uuid",
      "description": "The ID of the group"
    },
    "permissionType": {
      "$ref": "#/components/schemas/PermissionType"
    },
    "workspaceId": {
      "type": "uuid",
      "nullable": true,
      "description": "The workspace ID for workspace-scoped permissions"
    },
    "organizationId": {
      "type": "uuid",
      "nullable": true,
      "description": "The organization ID for organization-scoped permissions"
    }
  },
  "required": [
    "permissionId",
    "groupId",
    "permissionType"
  ]
}