Airbyte · Schema

GroupPermissionResponse

Provides details of a single group permission

Data IntegrationETLELTOpen-SourceData PipelineConnectorsData

Properties

Name Type Description
permissionId string The ID of the permission
groupId string The ID of the group
permissionType object
workspaceId string The workspace ID for workspace-scoped permissions
organizationId string The organization ID for organization-scoped permissions
View JSON Schema on GitHub

JSON Schema

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