Airbyte · JSON Structure

Airbyte Permission Response Structure

Provides details of a single permission.

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

PermissionResponse 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 permissionType userId 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-permission-response-structure.json",
  "name": "PermissionResponse",
  "description": "Provides details of a single permission.",
  "type": "object",
  "properties": {
    "permissionId": {
      "type": "uuid"
    },
    "permissionType": {
      "$ref": "#/components/schemas/PermissionType"
    },
    "userId": {
      "$ref": "#/components/schemas/UserId"
    },
    "workspaceId": {
      "$ref": "#/components/schemas/WorkspaceId"
    },
    "organizationId": {
      "$ref": "#/components/schemas/OrganizationId"
    }
  },
  "required": [
    "permissionId",
    "permissionType",
    "userId"
  ]
}